diff --git a/notebooks/token_labelling.ipynb b/notebooks/token_labelling.ipynb index 36a83c6d..a0c8cf48 100644 --- a/notebooks/token_labelling.ipynb +++ b/notebooks/token_labelling.ipynb @@ -425,13 +425,14 @@ "metadata": {}, "outputs": [], "source": [ - "import pandas\n", - "import matplotlib.pyplot as plt # install matplotlib, if necessary" + "import pandas as pd\n", + "import matplotlib.pyplot as plt # install matplotlib, if necessary\n", + "from tqdm.autonotebook import tqdm" ] }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 8, "metadata": {}, "outputs": [ { @@ -643,7 +644,7 @@ "[5 rows x 21 columns]" ] }, - "execution_count": 6, + "execution_count": 8, "metadata": {}, "output_type": "execute_result" } @@ -657,18 +658,54 @@ "# label1, label2 ... labelN are the keys of the label dictionary\n", "# the values of the label dictionary are the probabilities of the label\n", "# here we go:\n", - "df = pandas.DataFrame(labelled_token_ids_dict.items(), columns=[\"token_id\", \"label\"])\n", + "df = pd.DataFrame(labelled_token_ids_dict.items(), columns=[\"token_id\", \"label\"])\n", "# split the label column into multiple columns\n", - "df = df.join(pandas.DataFrame(df.pop('label').tolist()))\n", + "df = df.join(pd.DataFrame(df.pop('label').tolist()))\n", "# Change datatype of columns to float\n", "df = df.astype(int)\n", "\n", "df.head()" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We perform a **sanity check** to assure that the code above was correct." + ] + }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 52, + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "aac7894b3f61477bb96b9818757be9f4", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "0it [00:00, ?it/s]" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Perform sanity check, that the table was created correctly\n", + "for (row_index, row_values) in tqdm(df.iterrows()):\n", + " token_id = row_values.iloc[0]\n", + " label_pandas = list(row_values.iloc[1:]) # we exclude the token_id from the colum\n", + " label_dict = list(labelled_token_ids_dict[token_id].values())[:]\n", + " assert label_pandas == label_dict, f\"The dataframes are not equal for row {token_id}\\n{label_pandas}\\n{label_dict}\"" + ] + }, + { + "cell_type": "code", + "execution_count": 53, "metadata": {}, "outputs": [ { @@ -697,42 +734,6 @@ "# rotate x labels\n", "_ = plt.xticks(rotation=90)\n" ] - }, - { - "cell_type": "code", - "execution_count": 48, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'Capitalized': False,\n", - " 'Is Adjective': False,\n", - " 'Is Adposition': False,\n", - " 'Is Adverb': False,\n", - " 'Is Auxiliary': False,\n", - " 'Is Coordinating conjuction': False,\n", - " 'Is Determiner': False,\n", - " 'Is Interjunction': False,\n", - " 'Is Named Entity': False,\n", - " 'Is Noun': True,\n", - " 'Is Numeral': False,\n", - " 'Is Other': False,\n", - " 'Is Particle': False,\n", - " 'Is Pronoun': False,\n", - " 'Is Proper Noun': False,\n", - " 'Is Punctuation': False,\n", - " 'Is Subordinating conjuction': False,\n", - " 'Is Symbol': False,\n", - " 'Is Verb': False,\n", - " 'Starts with space': False}\n" - ] - } - ], - "source": [ - "pprint(labelled_token_ids_dict[1000])" - ] } ], "metadata": { diff --git a/scripts/label_all_tokens.py b/scripts/label_all_tokens.py index 01bf4cf1..e38f70a3 100644 --- a/scripts/label_all_tokens.py +++ b/scripts/label_all_tokens.py @@ -2,6 +2,7 @@ import pickle from pathlib import Path +import pandas as pd from tqdm.auto import tqdm from transformers import AutoTokenizer, PreTrainedTokenizer, PreTrainedTokenizerFast @@ -103,6 +104,34 @@ def main(): assert labelled_token_ids_dict == pickled print(" completed.") + # ----------- CSV ------------------------ + print("\nCreating the CSV ...") + # Create a pandas dataframe / CSV from the label dict + df = pd.DataFrame(labelled_token_ids_dict.items(), columns=["token_id", "label"]) + # split the label column into multiple columns + df = df.join(pd.DataFrame(df.pop("label").tolist())) + # Change datatype of columns to float + df = df.astype(int) + + print("Sanity check pandas csv ...", end="") + # Perform sanity check, that the table was created correctly + for row_index, row_values in df.iterrows(): + token_id = row_values.iloc[0] + label_pandas = list( + row_values.iloc[1:] + ) # we exclude the token_id from the colum + label_dict = list(labelled_token_ids_dict[token_id].values())[:] + assert ( + label_pandas == label_dict + ), f"The dataframes are not equal for row {token_id}\n{label_pandas}\n{label_dict}" + print(" completed.") + + # save the dataframe to a csv + filename = "labelled_token_ids_df.csv" + filepath = SAVE_DIR / filename + df.to_csv(filepath, index=False) + print(f"Saved the labelled tokens as CSV to:\n\t{filepath}\n") + print(" END ".center(50, "=")) diff --git a/src/delphi/eval/labelled_token_ids_df.csv b/src/delphi/eval/labelled_token_ids_df.csv new file mode 100644 index 00000000..80fba19e --- /dev/null +++ b/src/delphi/eval/labelled_token_ids_df.csv @@ -0,0 +1,4097 @@ +token_id,Starts with space,Capitalized,Is Adjective,Is Adposition,Is Adverb,Is Auxiliary,Is Coordinating conjuction,Is Determiner,Is Interjunction,Is Noun,Is Numeral,Is Particle,Is Pronoun,Is Proper Noun,Is Punctuation,Is Subordinating conjuction,Is Symbol,Is Verb,Is Other,Is Named Entity +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +8,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +10,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +17,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +18,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +19,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +20,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +21,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +23,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +24,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +25,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1 +27,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +28,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +29,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +38,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0 +40,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +46,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1 +52,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +53,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +54,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +55,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +56,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +57,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +58,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +59,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +60,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +64,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +68,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +69,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +70,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +71,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +72,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +73,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +74,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +75,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +76,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +77,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +78,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +79,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +80,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +81,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +82,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +83,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +84,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +85,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +86,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +87,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +88,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +89,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +90,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +91,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +92,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +93,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +95,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +100,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +104,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +105,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +106,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +107,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +108,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +109,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +110,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +111,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +113,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +114,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +115,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +116,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +117,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +119,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +120,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +121,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +122,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +124,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +125,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +127,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +130,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +131,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +132,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +133,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +134,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +135,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +136,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +137,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +138,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +139,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +140,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +141,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +142,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +143,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +144,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +145,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +146,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +147,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +148,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +149,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +150,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +151,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +152,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +153,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +154,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +155,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +156,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +157,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +158,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +159,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +160,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +161,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +162,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +163,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +164,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +165,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +166,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +167,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +168,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +169,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +170,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +171,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +172,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +173,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +174,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +175,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +176,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +177,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +178,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +179,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +180,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +182,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +183,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +184,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +185,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +186,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +187,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +188,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +189,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +190,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +191,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +192,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +193,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +194,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +195,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +196,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +197,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +198,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +199,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +200,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +201,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +202,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +203,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +204,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +205,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +206,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +207,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +208,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +210,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +211,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +212,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +213,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +214,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +215,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +216,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +217,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +218,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +219,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +220,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +221,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +222,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +223,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +224,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +225,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +226,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +227,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +228,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +229,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +230,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +231,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +232,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +233,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +234,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +235,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +236,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +237,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +238,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +239,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +240,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +241,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +242,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +243,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +245,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +246,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +247,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +248,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +249,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +250,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +251,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +253,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +254,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +255,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +256,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +257,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +258,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +259,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +260,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +261,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +263,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +264,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +265,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +266,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +268,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +269,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +270,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +271,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +272,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +273,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +275,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +276,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +277,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +278,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +281,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +282,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +283,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +285,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +287,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +288,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +289,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +290,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +291,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +292,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +293,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +295,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +296,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +297,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +299,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +300,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +301,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +302,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +303,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +304,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +305,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +306,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +308,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +309,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +310,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +311,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +312,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +313,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +314,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +315,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +316,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +317,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +318,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +319,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +320,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +321,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +322,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +323,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +325,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +326,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +328,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +329,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +330,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +332,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +333,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +334,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +335,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +336,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +338,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +339,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +340,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +341,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +342,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +343,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +344,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +345,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +347,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +348,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +349,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +350,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +351,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +352,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +353,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +354,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +356,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +357,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +358,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +359,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +361,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +363,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +364,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1 +365,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +366,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +367,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +368,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +370,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +371,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +372,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +373,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +374,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +375,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +376,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +377,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +381,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +382,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +383,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +385,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +386,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +387,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +388,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +393,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +394,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +396,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +399,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +400,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +401,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +402,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +403,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +404,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +405,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +406,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +407,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +410,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +412,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +414,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +415,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +416,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +417,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +418,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +419,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +421,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +422,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +423,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +424,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +425,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +426,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +427,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +428,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +429,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +430,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +431,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +432,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +433,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +434,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1 +435,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +436,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +437,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +438,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +439,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +440,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +441,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +442,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +443,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +444,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +445,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +446,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +447,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1 +448,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +449,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +450,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +452,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +454,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +455,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +456,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +457,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +459,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +461,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +462,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +464,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +465,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +467,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +469,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +470,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +472,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +473,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +474,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +475,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +477,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +478,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +479,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +480,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +481,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +482,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +484,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +485,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +486,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +488,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +489,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +490,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +491,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +492,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +493,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +494,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +496,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +497,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +499,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +500,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +501,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +504,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +505,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +506,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +507,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +508,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +509,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +512,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +514,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +516,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +517,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +518,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +519,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +520,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +523,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +524,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +525,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +526,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +528,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +530,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +531,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +532,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +533,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +535,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +536,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +537,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +538,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +539,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +540,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +541,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +542,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +543,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +544,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +545,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +546,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +547,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +548,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +550,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +552,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +553,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +554,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +555,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +556,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +557,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +559,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +561,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +563,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +566,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +568,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +570,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +571,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +572,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +573,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +574,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +575,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +576,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +577,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +580,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +581,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +582,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +584,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +585,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +586,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +587,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +588,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +590,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +592,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +593,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +595,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +596,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +597,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +598,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +599,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +600,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +602,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +605,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +606,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +608,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +609,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +610,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +611,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +612,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +613,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +615,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +616,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +617,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +618,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +619,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +620,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +621,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +622,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +624,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +625,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +627,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +628,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +629,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +630,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +631,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +634,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +635,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +636,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +637,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +639,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +640,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +641,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +642,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +643,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +644,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +645,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +646,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +647,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1 +648,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +649,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +650,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +651,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +652,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +653,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +654,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +656,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +657,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +658,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +659,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +660,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +661,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +662,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +664,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +665,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +666,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +667,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +668,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +669,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +670,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +672,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +673,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +674,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +676,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +677,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +678,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +680,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +681,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +682,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +683,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +684,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +685,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +686,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +688,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +690,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +691,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +692,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +693,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +695,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +696,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1 +697,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +699,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +700,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +701,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +702,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +703,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +708,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +709,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +710,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +713,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +714,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +715,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +717,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +718,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +719,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +721,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +722,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +723,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +724,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +726,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +727,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +728,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +729,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +730,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +731,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +732,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +733,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +734,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +735,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +737,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +738,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1 +739,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +740,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +741,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1 +742,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +745,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +746,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +747,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +748,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +750,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +751,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +752,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +753,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +754,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +756,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +757,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +758,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +760,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +762,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +763,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +764,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +765,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +766,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +767,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +768,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +769,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +770,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +771,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +772,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +773,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +774,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +775,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +776,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +777,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +778,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +780,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +781,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +782,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +783,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +784,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +785,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +786,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +787,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +788,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +789,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +790,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +791,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +793,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +794,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +795,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +797,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +798,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +799,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +800,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +802,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +803,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +804,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +805,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +806,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +807,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +808,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +810,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +811,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +812,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +813,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +815,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +817,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +818,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +819,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +820,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +821,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +822,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +823,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +824,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +826,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +827,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +828,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +829,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +830,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +831,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +832,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +833,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +834,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +835,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +836,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +839,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +840,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +841,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +842,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +844,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +846,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +847,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +848,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +850,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +853,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +857,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +858,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +860,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +862,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +864,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +865,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +866,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +867,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +868,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +869,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +872,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +873,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +877,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +878,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +879,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +880,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +881,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +884,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +888,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +889,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +890,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +891,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +892,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +894,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +895,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +896,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +897,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +898,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +899,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +900,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +901,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +903,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +904,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +906,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +907,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +908,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +910,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +912,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +913,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +914,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +915,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +916,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +917,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +918,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +919,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +921,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +922,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +923,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +924,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +925,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +927,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +928,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +929,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +930,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +932,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +933,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1 +934,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +935,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +936,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +937,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +938,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +941,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +942,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +943,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +945,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +946,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +947,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +948,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +949,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +950,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +951,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +952,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +953,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +954,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +955,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +956,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +957,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +958,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +959,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +960,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +962,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +963,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +964,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +965,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +969,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +970,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +972,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +974,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0 +976,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +977,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +978,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +979,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +980,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +982,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +983,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +984,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +985,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +986,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +987,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +988,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +989,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +990,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +991,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +995,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +996,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +999,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1000,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1001,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +1003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1004,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1005,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1006,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1007,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1008,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1010,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1011,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1012,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1015,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1016,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1017,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1018,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1020,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1021,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1022,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1023,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1024,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +1025,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1026,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1028,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +1030,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1031,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1032,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1033,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1036,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1037,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1039,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1040,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1042,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1044,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1045,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1046,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1050,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1051,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1052,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1053,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1054,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1055,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1056,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1057,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1059,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1061,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1062,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1063,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1064,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1065,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1067,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +1068,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1069,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1071,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1072,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1073,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1074,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1077,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1080,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1081,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1083,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1084,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1085,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1087,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1088,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1089,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1090,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1091,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1092,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1093,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1094,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +1095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1096,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +1097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1100,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1103,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1104,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1106,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1107,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1111,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1112,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1113,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1114,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1115,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1116,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1117,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1118,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1120,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1121,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1122,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1123,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1125,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1126,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1129,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1130,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1131,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1132,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1133,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1134,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1135,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +1136,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1137,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1138,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1139,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1140,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1141,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1142,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1144,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +1147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1148,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1149,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1150,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1151,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1153,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1154,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1155,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1156,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1157,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1158,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1159,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1160,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1161,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1163,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1164,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1165,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1168,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1169,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1170,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1 +1171,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1173,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1174,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1175,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1176,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1177,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1178,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1179,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1180,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1181,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1186,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1188,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1189,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1191,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1192,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1193,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1195,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1 +1196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1197,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1198,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1199,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1200,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1201,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1202,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1203,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1204,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1207,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1208,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1210,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1211,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +1212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1213,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1214,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +1215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1216,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1217,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1218,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1219,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1221,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1222,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1223,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1226,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1228,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1231,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1232,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1233,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1234,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1235,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1236,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1237,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1239,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1240,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1241,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1242,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1243,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1244,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1245,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1246,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1247,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +1248,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1249,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1251,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1255,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1257,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1259,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +1261,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1262,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1263,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1265,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1266,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1268,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1269,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1270,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1271,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1273,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1274,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1275,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1277,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1279,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1281,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1282,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1284,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1285,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1287,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1288,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1289,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1290,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1291,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1293,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1294,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +1295,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1296,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1297,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1298,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1299,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1300,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1301,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1302,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1304,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1307,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1308,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1310,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1311,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1312,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1313,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1315,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1316,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1317,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1318,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1320,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1321,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1322,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1323,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1324,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1325,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1326,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1327,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +1329,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1331,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1332,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1333,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1334,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1336,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1337,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1340,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1341,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1342,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1343,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1344,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1345,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1347,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1348,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1349,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1350,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +1352,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1353,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1355,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1356,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1357,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +1358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1359,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1360,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1361,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1362,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1364,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1365,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1366,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1367,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1368,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1369,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1370,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1371,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1372,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +1374,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1375,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1377,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +1380,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1381,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1383,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1384,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1385,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1386,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1387,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1388,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1389,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1390,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1392,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1393,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1394,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1395,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1399,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1400,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1401,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1404,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1405,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1406,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1409,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1410,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1411,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1412,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1413,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1415,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1416,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1418,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1419,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1420,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1421,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1422,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1424,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1426,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1427,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1428,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1431,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1434,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1435,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1437,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1438,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1439,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1440,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1441,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1444,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1445,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1446,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1447,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1449,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1451,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1454,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1455,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1456,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +1457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +1458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1459,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1460,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1461,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1462,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1463,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1464,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1465,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1467,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1468,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1469,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1470,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1471,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1473,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1476,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1477,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1478,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1480,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1482,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1483,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1484,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1485,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1487,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1488,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1490,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1491,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +1492,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1493,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1494,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1495,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1496,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1497,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1498,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1499,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1500,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1502,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1503,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1505,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1506,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1507,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1508,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1509,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1510,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1512,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1513,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1514,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1515,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1517,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1518,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1519,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1520,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1522,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1524,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1525,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1526,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1527,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1529,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1530,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1531,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1532,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1533,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1534,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1538,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1539,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1540,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1542,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1543,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1544,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1546,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +1547,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +1548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1549,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1550,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1552,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1553,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1554,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1556,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1558,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1559,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1560,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1561,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1562,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1563,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1564,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1565,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1566,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +1569,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1571,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1572,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1573,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1574,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1575,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1576,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1577,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1578,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1580,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +1581,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1582,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1583,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1585,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1586,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1587,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1590,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +1591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1592,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1593,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1594,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1596,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1599,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1600,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1601,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1602,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1604,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1605,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1606,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1607,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1608,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1609,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1610,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1611,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1613,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1614,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1615,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1617,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1618,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1619,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1620,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1621,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1622,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1623,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +1624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1626,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1627,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1628,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1629,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1630,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1 +1631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1635,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1636,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1637,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1638,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1640,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1641,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1642,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1646,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1648,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1651,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1653,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1656,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +1658,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1659,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1660,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1661,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +1664,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1667,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1668,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1669,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1670,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1671,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1672,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1673,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1675,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1676,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1677,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +1678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1679,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1680,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1681,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1682,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1683,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +1685,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1686,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +1688,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1692,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1693,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1694,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1695,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1696,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1698,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1699,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1700,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1701,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1702,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1703,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1704,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1705,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1706,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1707,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1709,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1710,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1711,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1712,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +1714,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1715,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1716,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1719,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1720,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1721,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1722,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1723,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1725,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1726,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1729,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1734,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1735,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1736,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1738,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1739,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1741,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1743,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1745,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1747,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1748,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1749,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1751,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1752,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1753,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1754,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1755,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1757,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1758,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1759,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1760,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1761,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1763,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1766,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1768,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1769,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1772,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1773,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1775,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1776,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1777,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1779,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1781,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1782,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1783,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1784,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1787,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1789,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +1791,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1793,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1794,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1796,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1798,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1800,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1801,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1802,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +1803,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +1806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1807,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1808,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1812,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1813,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1814,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1815,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1816,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1818,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1819,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1821,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1822,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1824,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1825,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1826,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1829,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1831,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1832,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1833,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1835,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1836,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1837,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1839,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1840,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1841,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1843,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +1844,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1845,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1846,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1848,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1850,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1853,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1855,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1856,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1858,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1861,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1862,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1864,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1865,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1867,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1868,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1870,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1871,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1872,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1873,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1874,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1875,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +1876,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1877,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1878,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1879,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +1880,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1881,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1882,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1884,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1885,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1886,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1888,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +1889,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1890,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1891,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +1893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1894,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1895,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1896,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1897,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1898,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1899,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1901,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1902,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1903,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1904,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1905,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1907,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1908,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1909,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1912,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1914,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +1915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1916,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1917,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1920,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1921,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1922,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1923,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1924,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1925,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1926,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1927,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1928,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1929,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1930,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1931,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1932,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1933,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1934,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1935,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1936,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1937,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1941,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1942,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1943,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1945,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1946,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1947,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +1948,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1949,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1950,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1951,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +1952,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1953,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1956,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1957,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1958,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +1959,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1960,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1961,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1962,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1964,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1965,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1966,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +1967,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1968,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1969,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1970,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1972,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1973,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1974,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1977,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +1978,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1979,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1980,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1981,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1984,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1985,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1986,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1991,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +1992,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +1994,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +1995,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +1996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +1997,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +1998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +1999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2001,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2002,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2003,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +2004,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2005,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2007,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2009,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2010,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2011,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2012,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2013,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2014,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2020,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2021,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +2022,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +2023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2024,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2025,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2026,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2027,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2028,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2029,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2031,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2032,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2033,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1 +2034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2035,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2036,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2037,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2038,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2040,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2041,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +2044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2045,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2046,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2047,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2048,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +2050,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2053,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +2055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2056,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2057,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2058,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2060,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2061,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2062,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2063,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +2064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2066,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2068,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2074,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2075,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2077,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2078,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2079,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2080,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2081,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2082,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2083,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2084,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2085,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2086,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2088,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2089,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2091,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2092,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2093,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2094,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2096,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2099,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +2100,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2101,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2102,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2103,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2104,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2106,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2107,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2108,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2109,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2110,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2111,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2112,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2113,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2114,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2115,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2116,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2117,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2118,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2119,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2120,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +2121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +2122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2123,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2125,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2126,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2127,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2131,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2132,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2133,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2134,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2135,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2136,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +2137,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2139,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2140,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2142,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2143,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2145,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2146,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2150,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2152,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2154,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2155,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2156,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2157,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2158,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2159,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2160,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2161,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2162,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2163,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2164,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2168,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2169,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2170,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2171,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +2172,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2174,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1 +2175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2176,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2177,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2178,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2179,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2184,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2186,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2187,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2189,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2190,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2191,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2193,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2194,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2195,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2196,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2197,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2198,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2199,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2201,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2203,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2204,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2205,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2208,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +2209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2211,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2212,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2213,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2214,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2215,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2218,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2219,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2220,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2221,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2222,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2223,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2225,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +2226,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2227,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2228,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2230,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2231,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1 +2232,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2233,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2234,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2236,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2238,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2240,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2241,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2243,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2244,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2245,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2247,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2248,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2249,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2250,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2251,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2252,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2253,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2255,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2256,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2257,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2259,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2260,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2261,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2262,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2263,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +2265,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2267,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2270,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2271,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2272,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2273,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2274,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2275,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +2276,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2277,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2278,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2279,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2280,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2281,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2282,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2283,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2285,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2286,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2288,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2289,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2290,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2291,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2292,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2293,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2294,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2295,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2297,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2298,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2300,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2301,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2303,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2304,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2305,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2307,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2308,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2310,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2311,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2312,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2316,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2317,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2318,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2319,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2320,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2322,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +2324,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2325,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2326,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2327,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1 +2328,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2330,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2331,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2332,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2333,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2334,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2335,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2336,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2339,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2340,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +2342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2344,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2346,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2347,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2348,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2349,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2350,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2351,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2352,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2353,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2354,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2355,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2357,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2359,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2360,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2361,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +2363,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2364,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2366,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2367,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2368,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2369,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2370,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2371,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2372,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +2373,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2374,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2375,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2376,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2377,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +2378,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2379,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +2380,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2381,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2382,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2383,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2384,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2385,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2386,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2388,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2390,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2391,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2392,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2393,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2394,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2395,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2396,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2397,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +2398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +2399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2400,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2401,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2402,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2403,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2404,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2406,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2407,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2409,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2410,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2411,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2412,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2413,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2414,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2415,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2416,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2418,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2421,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2422,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2423,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2424,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2425,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2426,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2427,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2428,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +2430,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2431,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2432,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2433,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2434,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2436,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2437,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2439,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2440,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2441,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2445,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2447,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2448,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2450,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2451,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2452,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2453,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2454,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2455,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2456,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2458,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +2459,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2460,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2462,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2463,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2465,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2466,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2469,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2470,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2471,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2472,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2473,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +2475,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2477,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2478,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2479,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2480,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2481,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +2482,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2483,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2484,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2485,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2486,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2487,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2489,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2490,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2491,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2492,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2494,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2496,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2497,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2498,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +2500,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2501,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2502,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2503,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2505,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2506,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2507,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +2508,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2509,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +2510,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2511,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2512,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2513,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2514,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2516,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2517,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2518,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +2519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2520,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2521,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2522,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +2523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2525,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2527,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2531,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2532,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2533,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +2534,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2535,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2537,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2538,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2539,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2544,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2546,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2547,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2548,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2550,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2551,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2554,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2555,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2556,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2557,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2559,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2560,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +2561,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2562,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2563,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2565,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2567,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2569,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +2571,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2572,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2573,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2575,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2576,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2577,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2578,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2579,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2580,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2582,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2583,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2584,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2586,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2587,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2588,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2589,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2591,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2592,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +2593,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2594,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2595,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2597,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2598,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2599,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2600,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2601,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2603,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2604,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2606,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2607,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +2608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2609,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2610,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2613,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2614,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2616,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2617,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2618,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2620,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2621,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2623,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2624,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2625,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2626,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2627,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2628,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2629,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2630,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2631,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2632,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1 +2633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2634,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2636,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +2637,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2638,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2639,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2640,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2641,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2642,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +2643,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2644,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2645,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2646,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2648,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2649,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2651,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2653,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2657,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2658,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2660,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2663,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2665,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +2666,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +2667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2670,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2671,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2672,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2674,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2675,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2676,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2677,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2678,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +2679,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2680,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2681,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2682,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2683,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2684,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2685,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2686,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2687,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2688,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2689,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2690,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2691,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2692,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2693,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2695,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2696,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2698,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2700,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +2703,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2705,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2708,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2710,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2711,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2712,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2713,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2715,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2717,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2719,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2720,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2721,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2722,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2723,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2726,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2727,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2728,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2729,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2730,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2731,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2733,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2734,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2736,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2737,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2738,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2739,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2740,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2741,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2742,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2743,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2744,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2745,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2746,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2748,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2749,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2750,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2751,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2752,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2753,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2754,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2755,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2756,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2757,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2761,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2763,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2764,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2765,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2767,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2768,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2769,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2770,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2771,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2772,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2774,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2776,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2777,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2778,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2779,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2780,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2781,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2782,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2783,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2784,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2786,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2789,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2790,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2791,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2792,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2794,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2796,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2797,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2799,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2800,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2802,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +2803,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2804,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +2805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2806,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2807,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2809,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +2810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2811,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2813,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2814,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2815,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2817,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2818,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2819,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2820,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2821,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2822,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2823,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2824,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2825,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2826,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2827,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2830,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +2832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2833,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +2834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2835,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2836,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2837,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2839,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2842,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2843,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2844,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2845,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2846,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +2847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2848,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2850,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2851,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2853,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2854,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2855,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2856,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2859,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2860,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2861,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2862,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2863,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2865,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2866,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +2867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +2868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2870,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2871,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0 +2873,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2876,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2877,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2878,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2879,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2880,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2883,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2884,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2885,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2888,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2889,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2890,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2892,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2894,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2895,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2896,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2897,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2899,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2901,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2902,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2904,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2906,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2907,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2909,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2910,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2911,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2912,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2913,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +2914,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2915,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2919,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2920,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2924,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2926,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2928,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2929,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2930,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2933,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2934,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2935,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +2936,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2937,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2938,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2939,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2940,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2941,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2942,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2943,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2944,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +2945,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2947,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2948,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2949,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2951,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1 +2952,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2953,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2954,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2956,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2958,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2959,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2961,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2962,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2963,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2964,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2965,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2966,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2968,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2970,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2971,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2972,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +2973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2975,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +2977,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2978,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2979,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2980,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2982,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +2983,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2984,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2986,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +2987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +2989,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +2991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +2992,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2993,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2996,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +2997,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2998,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2999,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3000,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3001,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3002,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3003,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3004,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3005,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3006,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3007,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3009,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3010,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3012,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3013,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3016,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3017,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3018,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3020,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3021,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3022,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3024,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3026,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3027,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3028,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3029,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3030,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3031,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3033,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3034,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3035,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3036,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1 +3037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3038,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3041,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3042,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3044,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3045,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3047,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3048,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3049,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3052,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3053,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3055,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3056,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3057,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3060,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3062,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3063,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3065,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3066,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3067,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3068,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3069,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3070,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3072,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3073,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3075,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +3077,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3078,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3079,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3080,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3082,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3083,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3084,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3085,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3086,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3088,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3089,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3090,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3095,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3096,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3099,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3100,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3101,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3102,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3105,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3107,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3108,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +3109,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3110,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3111,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3114,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3116,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3118,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3119,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +3122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3123,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +3127,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3128,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3130,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3131,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3132,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3133,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3134,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3135,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3136,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3138,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3139,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3140,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +3142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3143,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3144,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3145,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3146,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3147,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +3148,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3149,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3150,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3151,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3152,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3153,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3156,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3157,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3158,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3159,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3160,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3161,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3164,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +3166,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3168,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +3169,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3170,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3171,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3172,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3173,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3174,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3175,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +3176,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3178,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3179,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3180,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3181,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3182,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3183,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3184,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3185,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3186,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3187,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3188,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3189,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3190,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3191,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3193,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3194,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3195,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3197,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3198,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3199,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3201,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1 +3202,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3203,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3204,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +3206,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3207,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3208,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3209,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3210,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3211,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3213,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3214,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3215,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3216,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +3218,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3220,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3221,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3222,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3224,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3228,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3229,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3230,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3231,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3232,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3233,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3234,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3239,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1 +3240,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3241,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3243,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3245,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3246,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3247,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3248,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3249,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3251,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3252,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3253,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3254,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +3255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +3257,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3258,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3260,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3262,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3264,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3266,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3267,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +3268,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3269,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3271,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3272,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3273,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3274,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3275,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3277,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +3281,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3282,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3283,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3284,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3285,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3286,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3287,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3288,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3290,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3291,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3292,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3293,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3294,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3295,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3296,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3297,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3298,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3299,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3301,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3302,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3303,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3304,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3305,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3306,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3308,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +3311,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3312,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3313,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3315,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3317,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3318,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3319,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3320,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3324,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3325,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3326,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3328,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3329,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +3331,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3333,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3336,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3337,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3338,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3339,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3341,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3342,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +3343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3344,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3345,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3347,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3348,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +3349,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3351,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3352,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3353,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3354,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3356,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3357,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3359,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3360,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3361,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3362,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3364,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3365,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3368,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3369,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1 +3370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3371,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +3372,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3373,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3374,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3377,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3378,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3380,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3381,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +3382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3384,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3388,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3389,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3390,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3391,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +3392,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3393,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3394,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3395,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3396,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3397,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3398,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3399,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3401,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3402,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +3403,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3404,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3406,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1 +3407,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3408,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3409,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3410,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3411,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3412,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3413,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3414,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3416,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3417,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3418,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3420,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3421,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3423,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3424,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3425,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3426,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3427,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3428,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3429,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3430,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3431,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +3432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +3434,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3435,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3436,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3437,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3438,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3439,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3440,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3441,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +3443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3444,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3446,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3447,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1 +3448,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3449,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3450,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3451,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3452,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3453,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3454,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3455,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3456,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3460,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3461,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3462,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3463,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3467,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3468,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3469,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3470,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3471,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3472,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3473,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3475,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3476,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3477,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3478,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +3479,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3480,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3481,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3482,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3483,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3484,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3485,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3486,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3487,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3488,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3489,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3490,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3491,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3492,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3493,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3494,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3497,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3498,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3499,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3500,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +3503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +3504,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3506,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3508,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3509,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3510,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3511,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3512,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3516,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3517,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3518,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3519,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3520,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3523,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3524,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3525,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3526,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3528,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +3530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3532,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3533,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3534,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3535,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3536,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3537,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3538,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +3540,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3542,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +3543,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +3545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3546,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3547,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3548,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3549,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1 +3550,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3551,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3552,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3554,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3556,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3557,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3558,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3559,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3562,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3565,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3566,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3567,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3568,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3569,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3570,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3571,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3572,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3574,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3575,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3577,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3579,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3580,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3582,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3583,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3585,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3588,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3589,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3590,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3591,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3593,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3594,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3595,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +3596,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3598,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3600,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3601,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3602,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3604,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3605,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3606,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3607,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3608,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3610,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3611,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3613,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3614,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3615,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3617,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3618,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3619,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3620,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3622,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3623,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3624,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3625,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3626,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3627,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3629,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3630,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3631,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3632,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3633,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3634,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3635,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3636,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3638,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3640,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3641,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3642,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3643,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3646,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3648,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3649,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3650,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3651,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3652,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3653,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3654,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3655,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3656,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3657,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3658,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3660,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3661,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3662,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +3664,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3665,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3666,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +3667,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3668,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3670,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +3673,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3676,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3678,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3679,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3680,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3681,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3682,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3683,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3684,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3685,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3686,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3687,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3688,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3690,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3691,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1 +3692,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3697,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3698,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +3699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +3700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3701,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3702,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3703,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3704,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3705,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3706,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3710,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3711,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3713,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3714,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +3716,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3717,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3718,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3719,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3721,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3723,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +3725,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3726,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3727,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +3728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3730,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3732,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3733,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3734,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3735,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3736,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3737,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3738,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3739,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3741,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3742,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +3745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3746,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +3747,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3748,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +3750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +3751,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3752,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3753,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3754,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3755,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3756,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3757,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3758,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3759,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3761,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3764,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3767,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3768,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3769,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3771,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +3773,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3774,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3775,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3777,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3779,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3780,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +3783,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3784,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3785,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3786,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3787,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3788,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3791,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3792,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3794,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3795,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3796,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3797,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3798,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3799,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3800,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3801,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3804,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +3806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3807,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3808,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3809,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3810,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3811,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3812,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3816,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3818,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3819,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3820,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3821,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3822,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +3823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3825,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3826,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3827,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3828,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3829,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3832,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3834,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3835,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3836,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3837,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3838,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3839,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +3840,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3841,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3842,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +3845,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +3847,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3848,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3849,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3850,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3851,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3853,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3855,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3857,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3858,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3859,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3860,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3861,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3862,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3864,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3865,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +3867,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3870,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3871,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3873,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3875,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3877,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3878,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3879,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3880,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3881,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3882,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3883,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3884,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3885,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3886,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3887,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3888,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3890,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3892,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3893,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3894,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3895,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3896,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +3898,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3899,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3900,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +3901,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3903,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +3904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3906,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3907,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3908,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3909,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3910,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3911,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3912,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3913,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +3915,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3916,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3917,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3918,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3919,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3920,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +3921,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3926,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3928,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3929,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3931,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3932,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3933,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3935,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +3936,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3937,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3939,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3940,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3941,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3942,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3943,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3944,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3946,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3947,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3949,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3950,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3951,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3952,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3953,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3954,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 +3955,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3956,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3957,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3959,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3960,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3961,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3962,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3963,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +3964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3965,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3967,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3969,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3970,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3971,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3972,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3973,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3974,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3975,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +3976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3977,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3978,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3979,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3980,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3981,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3982,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3983,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3984,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +3985,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3986,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3987,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +3988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3989,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3990,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +3992,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3993,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3994,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3995,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +3996,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +3997,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +3998,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +3999,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +4000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1 +4001,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +4002,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1 +4003,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +4004,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +4005,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +4006,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +4007,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +4008,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +4009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +4010,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +4011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +4012,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +4013,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4014,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +4015,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +4016,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4017,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +4018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +4019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +4020,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +4021,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1 +4022,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 +4023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +4024,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4025,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +4026,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4027,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4028,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4029,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +4030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +4031,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +4032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +4033,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4034,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4035,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +4036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +4037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +4038,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +4039,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4040,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4041,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +4042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +4043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +4044,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +4045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +4046,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4047,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +4049,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +4050,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +4051,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4052,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +4053,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +4054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +4055,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +4057,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +4059,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4060,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +4061,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +4062,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +4064,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4065,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4066,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +4067,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1 +4068,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4069,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4070,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +4071,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +4072,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4073,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +4074,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4075,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4076,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +4078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +4079,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4080,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4081,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4082,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +4083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +4084,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4085,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 +4086,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +4087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1 +4088,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +4089,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +4090,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +4091,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +4092,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +4093,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +4094,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +4095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0