From 727bd4e736cf39bf97092d5b88643803c73f8b64 Mon Sep 17 00:00:00 2001 From: Niam5 Date: Mon, 20 May 2024 20:24:55 -0700 Subject: [PATCH] Spell: Move SpellReagents DBC into database --- sql/base/dbc/cmangos_fixes/SpellReagents.sql | 38 + sql/base/dbc/original_data/SpellReagents.sql | 5180 ++++++++++++++++++ src/game/Entities/Pet.cpp | 13 +- src/game/PlayerBot/Base/PlayerbotAI.cpp | 30 +- src/game/Server/DBCStores.cpp | 2 - src/game/Server/DBCStores.h | 1 - src/game/Server/DBCStructure.cpp | 5 - src/game/Server/DBCStructure.h | 23 +- src/game/Server/SQLStorages.cpp | 2 +- src/game/Spells/Spell.cpp | 65 +- src/game/Spells/SpellMgr.cpp | 20 +- 11 files changed, 5275 insertions(+), 104 deletions(-) create mode 100644 sql/base/dbc/cmangos_fixes/SpellReagents.sql create mode 100644 sql/base/dbc/original_data/SpellReagents.sql diff --git a/sql/base/dbc/cmangos_fixes/SpellReagents.sql b/sql/base/dbc/cmangos_fixes/SpellReagents.sql new file mode 100644 index 000000000..cd859dae2 --- /dev/null +++ b/sql/base/dbc/cmangos_fixes/SpellReagents.sql @@ -0,0 +1,38 @@ +ALTER TABLE spell_template ADD `Reagent1` INT NOT NULL DEFAULT '0' AFTER SpellReagentsId; +ALTER TABLE spell_template ADD `Reagent2` INT NOT NULL DEFAULT '0' AFTER Reagent1; +ALTER TABLE spell_template ADD `Reagent3` INT NOT NULL DEFAULT '0' AFTER Reagent2; +ALTER TABLE spell_template ADD `Reagent4` INT NOT NULL DEFAULT '0' AFTER Reagent3; +ALTER TABLE spell_template ADD `Reagent5` INT NOT NULL DEFAULT '0' AFTER Reagent4; +ALTER TABLE spell_template ADD `Reagent6` INT NOT NULL DEFAULT '0' AFTER Reagent5; +ALTER TABLE spell_template ADD `Reagent7` INT NOT NULL DEFAULT '0' AFTER Reagent6; +ALTER TABLE spell_template ADD `Reagent8` INT NOT NULL DEFAULT '0' AFTER Reagent7; +ALTER TABLE spell_template ADD `ReagentCount1` INT NOT NULL DEFAULT '0' AFTER Reagent8; +ALTER TABLE spell_template ADD `ReagentCount2` INT UNSIGNED NOT NULL DEFAULT '0' AFTER ReagentCount1; +ALTER TABLE spell_template ADD `ReagentCount3` INT UNSIGNED NOT NULL DEFAULT '0' AFTER ReagentCount2; +ALTER TABLE spell_template ADD `ReagentCount4` INT UNSIGNED NOT NULL DEFAULT '0' AFTER ReagentCount3; +ALTER TABLE spell_template ADD `ReagentCount5` INT UNSIGNED NOT NULL DEFAULT '0' AFTER ReagentCount4; +ALTER TABLE spell_template ADD `ReagentCount6` INT UNSIGNED NOT NULL DEFAULT '0' AFTER ReagentCount5; +ALTER TABLE spell_template ADD `ReagentCount7` INT UNSIGNED NOT NULL DEFAULT '0' AFTER ReagentCount6; +ALTER TABLE spell_template ADD `ReagentCount8` INT UNSIGNED NOT NULL DEFAULT '0' AFTER ReagentCount7; + +UPDATE spell_template INNER JOIN spell_reagents ON (spell_template.SpellReagentsId = spell_reagents.Id) SET spell_template.Reagent1 = spell_reagents.Reagent1; +UPDATE spell_template INNER JOIN spell_reagents ON (spell_template.SpellReagentsId = spell_reagents.Id) SET spell_template.Reagent2 = spell_reagents.Reagent2; +UPDATE spell_template INNER JOIN spell_reagents ON (spell_template.SpellReagentsId = spell_reagents.Id) SET spell_template.Reagent3 = spell_reagents.Reagent3; +UPDATE spell_template INNER JOIN spell_reagents ON (spell_template.SpellReagentsId = spell_reagents.Id) SET spell_template.Reagent4 = spell_reagents.Reagent4; +UPDATE spell_template INNER JOIN spell_reagents ON (spell_template.SpellReagentsId = spell_reagents.Id) SET spell_template.Reagent5 = spell_reagents.Reagent5; +UPDATE spell_template INNER JOIN spell_reagents ON (spell_template.SpellReagentsId = spell_reagents.Id) SET spell_template.Reagent6 = spell_reagents.Reagent6; +UPDATE spell_template INNER JOIN spell_reagents ON (spell_template.SpellReagentsId = spell_reagents.Id) SET spell_template.Reagent7 = spell_reagents.Reagent7; +UPDATE spell_template INNER JOIN spell_reagents ON (spell_template.SpellReagentsId = spell_reagents.Id) SET spell_template.Reagent8 = spell_reagents.Reagent8; + +UPDATE spell_template INNER JOIN spell_reagents ON (spell_template.SpellReagentsId = spell_reagents.Id) SET spell_template.ReagentCount1 = spell_reagents.ReagentCount1; +UPDATE spell_template INNER JOIN spell_reagents ON (spell_template.SpellReagentsId = spell_reagents.Id) SET spell_template.ReagentCount2 = spell_reagents.ReagentCount2; +UPDATE spell_template INNER JOIN spell_reagents ON (spell_template.SpellReagentsId = spell_reagents.Id) SET spell_template.ReagentCount3 = spell_reagents.ReagentCount3; +UPDATE spell_template INNER JOIN spell_reagents ON (spell_template.SpellReagentsId = spell_reagents.Id) SET spell_template.ReagentCount4 = spell_reagents.ReagentCount4; +UPDATE spell_template INNER JOIN spell_reagents ON (spell_template.SpellReagentsId = spell_reagents.Id) SET spell_template.ReagentCount5 = spell_reagents.ReagentCount5; +UPDATE spell_template INNER JOIN spell_reagents ON (spell_template.SpellReagentsId = spell_reagents.Id) SET spell_template.ReagentCount6 = spell_reagents.ReagentCount6; +UPDATE spell_template INNER JOIN spell_reagents ON (spell_template.SpellReagentsId = spell_reagents.Id) SET spell_template.ReagentCount7 = spell_reagents.ReagentCount7; +UPDATE spell_template INNER JOIN spell_reagents ON (spell_template.SpellReagentsId = spell_reagents.Id) SET spell_template.ReagentCount8 = spell_reagents.ReagentCount8; + +ALTER TABLE spell_template DROP COLUMN SpellReagentsId; + +DROP TABLE spell_reagents; \ No newline at end of file diff --git a/sql/base/dbc/original_data/SpellReagents.sql b/sql/base/dbc/original_data/SpellReagents.sql new file mode 100644 index 000000000..8915be096 --- /dev/null +++ b/sql/base/dbc/original_data/SpellReagents.sql @@ -0,0 +1,5180 @@ +DROP TABLE IF EXISTS `spell_reagents`; + +CREATE TABLE `spell_reagents` ( + `Id` int NOT NULL DEFAULT '0', + `Reagent1` int NOT NULL DEFAULT '0', + `Reagent2` int NOT NULL DEFAULT '0', + `Reagent3` int NOT NULL DEFAULT '0', + `Reagent4` int NOT NULL DEFAULT '0', + `Reagent5` int NOT NULL DEFAULT '0', + `Reagent6` int NOT NULL DEFAULT '0', + `Reagent7` int NOT NULL DEFAULT '0', + `Reagent8` int NOT NULL DEFAULT '0', + `ReagentCount1` int NOT NULL DEFAULT '0', + `ReagentCount2` int unsigned NOT NULL DEFAULT '0', + `ReagentCount3` int unsigned NOT NULL DEFAULT '0', + `ReagentCount4` int unsigned NOT NULL DEFAULT '0', + `ReagentCount5` int unsigned NOT NULL DEFAULT '0', + `ReagentCount6` int unsigned NOT NULL DEFAULT '0', + `ReagentCount7` int unsigned NOT NULL DEFAULT '0', + `ReagentCount8` int unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`Id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +/*Data for the table `spell_reagents` */ + +insert into `spell_reagents`(`Id`,`Reagent1`,`Reagent2`,`Reagent3`,`Reagent4`,`Reagent5`,`Reagent6`,`Reagent7`,`Reagent8`,`ReagentCount1`,`ReagentCount2`,`ReagentCount3`,`ReagentCount4`,`ReagentCount5`,`ReagentCount6`,`ReagentCount7`,`ReagentCount8`) values +(1,17056,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2,17057,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3,5517,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4,17058,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5,5518,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(6,878,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(9,17056,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(10,2318,2320,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(11,2318,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(12,2318,2320,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(13,2318,2320,0,0,0,0,0,0,8,2,0,0,0,0,0,0), +(14,2318,2320,0,0,0,0,0,0,6,2,0,0,0,0,0,0), +(15,2318,2320,0,0,0,0,0,0,7,2,0,0,0,0,0,0), +(16,2318,2321,0,0,0,0,0,0,10,2,0,0,0,0,0,0), +(17,2318,2320,0,0,0,0,0,0,8,4,0,0,0,0,0,0), +(18,2318,2320,0,0,0,0,0,0,8,5,0,0,0,0,0,0), +(19,2318,2320,0,0,0,0,0,0,5,2,0,0,0,0,0,0), +(20,2318,2320,2324,0,0,0,0,0,8,2,1,0,0,0,0,0), +(21,4231,2318,2320,0,0,0,0,0,1,4,2,0,0,0,0,0), +(22,2319,2320,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(23,2319,4231,2321,0,0,0,0,0,10,6,2,0,0,0,0,0), +(24,2319,2321,4340,0,0,0,0,0,4,2,1,0,0,0,0,0), +(25,2319,2321,4340,0,0,0,0,0,8,1,1,0,0,0,0,0), +(26,2319,2321,4340,0,0,0,0,0,6,1,1,0,0,0,0,0), +(27,2449,765,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(28,2447,765,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(29,785,765,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(30,785,2447,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(31,3355,2452,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(32,2449,2447,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(33,2452,2450,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(34,2449,785,3371,0,0,0,0,0,2,2,1,0,0,0,0,0), +(35,118,2450,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(36,2996,2320,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(37,2996,2320,2318,0,0,0,0,0,3,1,1,0,0,0,0,0), +(38,2996,2320,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(39,2996,2320,2604,0,0,0,0,0,3,2,2,0,0,0,0,0), +(40,2996,2320,2604,0,0,0,0,0,2,1,1,0,0,0,0,0), +(41,2996,2320,2324,0,0,0,0,0,1,1,1,0,0,0,0,0), +(42,2996,2320,6260,0,0,0,0,0,2,1,1,0,0,0,0,0), +(43,2996,2318,2321,0,0,0,0,0,4,1,1,0,0,0,0,0), +(44,2996,2321,2605,0,0,0,0,0,3,1,1,0,0,0,0,0), +(45,2996,2320,0,0,0,0,0,0,2,3,0,0,0,0,0,0), +(46,2997,2321,2605,0,0,0,0,0,2,2,1,0,0,0,0,0), +(47,2997,2321,2318,0,0,0,0,0,4,2,2,0,0,0,0,0), +(48,2997,2321,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(49,2997,2321,4340,0,0,0,0,0,4,3,1,0,0,0,0,0), +(50,2997,2321,4340,0,0,0,0,0,2,1,1,0,0,0,0,0), +(51,2672,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(52,2672,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(53,769,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(54,2673,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(55,723,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(56,769,159,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(57,2674,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(58,2675,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(59,2677,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(60,0,1080,0,0,0,0,0,0,0,1,0,0,0,0,0,0), +(61,2677,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(62,1015,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(63,2770,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(64,2775,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(65,2840,3576,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(66,2835,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(67,2840,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(68,2840,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(69,2840,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(70,2840,3470,0,0,0,0,0,0,10,3,0,0,0,0,0,0), +(71,2836,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(72,2840,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(73,2840,1210,3470,0,0,0,0,0,12,1,2,0,0,0,0,0), +(74,2841,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(75,2841,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0), +(76,2841,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(77,2841,3478,0,0,0,0,0,0,5,2,0,0,0,0,0,0), +(78,2841,2842,3478,0,0,0,0,0,10,2,2,0,0,0,0,0), +(79,2838,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(80,2841,1206,1705,5500,2842,0,0,0,20,2,2,2,4,0,0,0), +(81,2840,2880,2589,0,0,0,0,0,6,1,2,0,0,0,0,0), +(82,2840,2880,2589,0,0,0,0,0,6,1,2,0,0,0,0,0), +(83,2840,2880,2589,0,0,0,0,0,6,1,2,0,0,0,0,0), +(84,2841,2880,2319,0,0,0,0,0,6,4,1,0,0,0,0,0), +(85,2841,2880,2319,0,0,0,0,0,7,4,1,0,0,0,0,0), +(86,2841,2880,2319,0,0,0,0,0,5,4,2,0,0,0,0,0), +(87,2886,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(88,2934,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(89,2589,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(90,2592,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(91,5026,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(92,2835,2589,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(93,2836,2592,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(94,2838,2592,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(95,2447,2449,3371,0,0,0,0,0,1,2,1,0,0,0,0,0), +(96,785,2450,3371,0,0,0,0,0,1,2,1,0,0,0,0,0), +(97,785,3355,3371,0,0,0,0,0,3,1,1,0,0,0,0,0), +(98,785,3820,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(99,1288,2453,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(100,8839,8845,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(101,2453,2450,3371,0,0,0,0,0,2,2,1,0,0,0,0,0), +(102,3355,3820,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(103,2449,3356,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(104,2452,765,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(105,2589,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(106,2589,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(107,2592,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(108,2592,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(109,2840,2880,818,2319,0,0,0,0,14,2,2,2,0,0,0,0), +(110,2840,2880,774,3470,2318,0,0,0,12,2,2,2,2,0,0,0), +(111,2840,2880,2842,3470,2318,0,0,0,10,2,2,2,2,0,0,0), +(112,2841,3466,2459,1210,3478,2319,0,0,4,1,1,2,2,2,0,0), +(113,2841,3466,1206,1210,3478,2319,0,0,8,1,1,1,2,2,0,0), +(114,3575,3466,3391,1705,3478,2319,0,0,6,2,1,2,2,2,0,0), +(115,2771,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(116,2772,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(117,2776,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(118,2840,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(119,2835,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(120,2840,3470,0,0,0,0,0,0,8,2,0,0,0,0,0,0), +(121,2840,3470,0,0,0,0,0,0,8,2,0,0,0,0,0,0), +(122,2840,2321,3470,0,0,0,0,0,8,2,3,0,0,0,0,0), +(123,2840,818,774,0,0,0,0,0,8,1,1,0,0,0,0,0), +(124,2836,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(125,2841,3478,0,0,0,0,0,0,5,1,0,0,0,0,0,0), +(126,2841,2842,3478,0,0,0,0,0,8,2,2,0,0,0,0,0), +(127,2841,2842,3478,0,0,0,0,0,6,1,2,0,0,0,0,0), +(128,2841,2842,3478,0,0,0,0,0,8,1,2,0,0,0,0,0), +(129,3575,3478,2605,0,0,0,0,0,6,2,1,0,0,0,0,0), +(130,3575,5498,3478,2605,0,0,0,0,4,2,2,1,0,0,0,0), +(131,2838,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(132,2924,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(133,3173,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(134,1468,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(135,3667,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(136,3685,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(137,2251,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(138,3730,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(139,3731,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(140,3731,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(141,3712,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(142,2453,2450,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(143,3818,3355,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(144,0,3369,3371,0,0,0,0,0,0,2,1,0,0,0,0,0), +(145,3355,3821,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(146,3357,2453,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(147,3820,3356,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(148,3358,3818,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(149,3358,3819,3371,0,0,0,0,0,4,2,1,0,0,0,0,0), +(150,2841,2880,3470,818,2319,0,0,0,6,4,2,1,1,0,0,0), +(151,3575,3466,3486,1705,4234,0,0,0,6,2,1,2,3,0,0,0), +(152,3575,3466,3486,1529,4234,0,0,0,8,2,2,2,3,0,0,0), +(153,3575,3466,3486,2842,4234,0,0,0,8,2,1,4,2,0,0,0), +(154,3575,3577,1705,3466,4234,3486,0,0,10,4,2,2,2,2,0,0), +(155,3859,3466,3486,1705,4234,0,0,0,8,2,2,3,3,0,0,0), +(156,3859,0,0,1529,3829,0,0,0,12,0,0,2,2,0,0,0), +(157,3575,3466,3486,3577,4234,0,0,0,14,2,2,4,2,0,0,0), +(158,3859,0,0,3864,3824,0,0,0,10,0,0,2,2,0,0,0), +(159,3575,2605,0,0,0,0,0,0,6,1,0,0,0,0,0,0), +(160,3575,3864,2605,0,0,0,0,0,12,1,1,0,0,0,0,0), +(161,3859,3577,3486,0,0,0,0,0,8,2,2,0,0,0,0,0), +(162,3575,3486,2605,0,0,0,0,0,7,1,1,0,0,0,0,0), +(163,3859,3577,3486,0,0,0,0,0,6,2,1,0,0,0,0,0), +(164,3575,3486,2605,0,0,0,0,0,8,1,1,0,0,0,0,0), +(165,3575,3577,3486,0,0,0,0,0,10,2,1,0,0,0,0,0), +(166,3575,3486,1529,1206,4255,0,0,0,20,4,2,2,1,0,0,0), +(167,3859,3577,3486,0,0,0,0,0,12,2,4,0,0,0,0,0), +(168,3859,3864,1705,3486,0,0,0,0,8,1,1,2,0,0,0,0), +(169,3859,3577,3486,0,0,0,0,0,10,4,4,0,0,0,0,0), +(170,17031,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(171,17031,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(172,17031,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(173,17031,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(174,17031,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(175,17031,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(176,3575,3857,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(177,2318,2320,0,0,0,0,0,0,6,1,0,0,0,0,0,0), +(178,2996,2320,0,0,0,0,0,0,3,3,0,0,0,0,0,0), +(179,2318,2320,0,0,0,0,0,0,3,2,0,0,0,0,0,0), +(180,2997,2321,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(181,2997,2605,2321,0,0,0,0,0,4,1,1,0,0,0,0,0), +(182,4231,2318,2320,0,0,0,0,0,1,6,2,0,0,0,0,0), +(183,4234,2321,0,0,0,0,0,0,5,2,0,0,0,0,0,0), +(184,4231,2318,2320,0,0,0,0,0,3,6,4,0,0,0,0,0), +(185,4243,4231,2320,0,0,0,0,0,1,2,2,0,0,0,0,0), +(186,2318,2320,0,0,0,0,0,0,6,2,0,0,0,0,0,0), +(187,2319,2321,0,0,0,0,0,0,14,4,0,0,0,0,0,0), +(188,2319,5373,2321,4340,0,0,0,0,8,2,1,1,0,0,0,0), +(189,4246,4233,2321,4340,0,0,0,0,1,1,2,1,0,0,0,0), +(190,2319,3383,2321,0,0,0,0,0,8,1,2,0,0,0,0,0), +(191,4233,2319,2321,0,0,0,0,0,1,4,1,0,0,0,0,0), +(192,2319,3390,4340,2321,0,0,0,0,12,1,1,2,0,0,0,0), +(193,2319,4233,3389,3182,2321,0,0,0,4,2,2,2,2,0,0,0), +(194,4234,5637,2321,0,0,0,0,0,6,2,1,0,0,0,0,0), +(195,4234,2605,2321,0,0,0,0,0,9,2,4,0,0,0,0,0), +(196,4236,4234,3824,2321,0,0,0,0,2,12,1,2,0,0,0,0), +(197,4236,4234,2321,2605,7071,0,0,0,1,5,1,1,1,0,0,0), +(198,4236,4234,2321,7071,0,0,0,0,2,4,1,1,0,0,0,0), +(199,4236,4234,2605,2321,0,0,0,0,2,6,1,1,0,0,0,0), +(200,4234,4236,4291,0,0,0,0,0,6,2,1,0,0,0,0,0), +(201,4236,5500,1529,3864,2321,0,0,0,4,1,1,1,1,0,0,0), +(202,4234,4236,0,5633,4291,7071,0,0,6,2,0,1,1,1,0,0), +(203,4234,2321,0,0,0,0,0,0,5,1,0,0,0,0,0,0), +(204,4305,4234,2321,0,0,0,0,0,3,2,3,0,0,0,0,0), +(205,783,4289,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(206,4232,4289,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(207,4235,4289,0,0,0,0,0,0,1,3,0,0,0,0,0,0), +(208,4306,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(209,2996,2320,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(210,2996,2320,2605,0,0,0,0,0,3,2,1,0,0,0,0,0), +(211,2996,2321,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(212,2997,2321,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(213,2997,2321,5498,0,0,0,0,0,3,2,2,0,0,0,0,0), +(214,2996,2318,2321,0,0,0,0,0,5,2,1,0,0,0,0,0), +(215,2997,2318,2321,2604,0,0,0,0,4,2,1,2,0,0,0,0), +(216,2997,2321,0,0,0,0,0,0,3,2,0,0,0,0,0,0), +(217,2997,2319,2321,0,0,0,0,0,6,2,2,0,0,0,0,0), +(218,2997,2321,0,0,0,0,0,0,5,4,0,0,0,0,0,0), +(219,2997,5500,2321,0,0,0,0,0,6,1,3,0,0,0,0,0), +(220,2997,2321,3383,0,0,0,0,0,4,3,1,0,0,0,0,0), +(221,4305,4234,6260,2321,0,0,0,0,3,2,2,2,0,0,0,0), +(222,4305,2319,3182,5500,0,0,0,0,2,4,4,2,0,0,0,0), +(223,4305,3182,2321,0,0,0,0,0,3,1,2,0,0,0,0,0), +(224,4305,2321,4337,0,0,0,0,0,3,2,2,0,0,0,0,0), +(225,4305,4291,3824,0,0,0,0,0,4,1,1,0,0,0,0,0), +(226,4305,6260,0,0,0,0,0,0,5,4,0,0,0,0,0,0), +(227,4305,4291,4337,0,0,0,0,0,4,1,2,0,0,0,0,0), +(228,4305,3827,4291,0,0,0,0,0,4,1,1,0,0,0,0,0), +(229,4339,4291,3829,4337,0,0,0,0,3,2,1,2,0,0,0,0), +(230,4305,4337,7071,0,0,0,0,0,4,2,1,0,0,0,0,0), +(231,4339,4234,3864,7071,4291,0,0,0,4,4,1,1,1,0,0,0), +(232,4338,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(233,2997,2604,2321,0,0,0,0,0,3,2,1,0,0,0,0,0), +(234,2997,5500,2321,2324,0,0,0,0,4,1,4,2,0,0,0,0), +(235,4305,4341,2321,0,0,0,0,0,1,1,1,0,0,0,0,0), +(236,4305,4340,2321,0,0,0,0,0,2,2,1,0,0,0,0,0), +(237,4305,2324,2321,0,0,0,0,0,3,2,1,0,0,0,0,0), +(238,4305,4342,4291,0,0,0,0,0,4,1,1,0,0,0,0,0), +(239,4305,2325,4291,0,0,0,0,0,5,1,1,0,0,0,0,0), +(240,2996,2320,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(241,2996,2320,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(242,2835,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(243,4357,2589,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(244,4357,2840,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(245,2840,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(246,4357,4359,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(247,2840,2880,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(248,2840,4359,4399,0,0,0,0,0,4,3,1,0,0,0,0,0), +(249,4359,2840,2589,0,0,0,0,0,2,1,2,0,0,0,0,0), +(250,0,4359,2840,774,0,0,0,0,0,1,1,2,0,0,0,0), +(251,2836,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(252,4364,2840,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(253,4364,2589,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(254,0,0,2841,2592,0,0,0,0,0,0,2,2,0,0,0,0), +(255,4364,0,2318,159,0,0,0,0,2,0,1,1,0,0,0,0), +(256,2841,818,0,0,0,0,0,0,8,2,0,0,0,0,0,0), +(257,4371,4406,4399,0,0,0,0,0,4,1,1,0,0,0,0,0), +(258,2840,4364,4404,0,0,0,0,0,3,4,1,0,0,0,0,0), +(259,2841,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(260,4371,4359,4400,1206,0,0,0,0,2,2,1,3,0,0,0,0), +(261,2319,1210,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(262,4364,2841,4404,2592,0,0,0,0,4,2,1,1,0,0,0,0), +(263,2841,2592,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(264,4375,4402,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(265,2838,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(266,4377,2592,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(267,4377,2841,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(268,4371,4375,4400,2842,0,0,0,0,2,2,1,3,0,0,0,0), +(269,4377,2841,4404,0,0,0,0,0,2,3,1,0,0,0,0,0), +(270,4371,4375,2319,1206,0,0,0,0,1,2,2,1,0,0,0,0), +(271,2841,2319,2592,0,0,0,0,0,2,1,1,0,0,0,0,0), +(272,4371,4375,4400,1705,0,0,0,0,3,3,1,2,0,0,0,0), +(273,4382,4375,4377,2592,0,0,0,0,1,1,2,2,0,0,0,0), +(274,2319,1206,4368,0,0,0,0,0,4,2,1,0,0,0,0,0), +(275,4375,3829,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(276,3575,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(277,4375,4306,1529,4371,0,0,0,0,3,2,1,1,0,0,0,0), +(278,4371,4387,4377,2319,0,0,0,0,4,1,4,4,0,0,0,0), +(279,3575,10558,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(280,3575,4377,4306,0,0,0,0,0,1,1,1,0,0,0,0,0), +(281,4387,4382,4389,4234,0,0,0,0,2,1,2,4,0,0,0,0), +(282,4387,4382,4389,4234,0,0,0,0,1,1,1,4,0,0,0,0), +(283,4234,3864,0,0,0,0,0,0,6,2,0,0,0,0,0,0), +(284,3575,4377,4404,0,0,0,0,0,3,3,1,0,0,0,0,0), +(285,4377,3575,4389,0,0,0,0,0,3,2,1,0,0,0,0,0), +(286,4382,4387,4389,3864,0,0,0,0,1,2,2,1,0,0,0,0), +(287,4389,1529,1705,3864,7191,0,0,0,4,2,2,2,1,0,0,0), +(288,10505,4234,159,0,0,0,0,0,2,2,1,0,0,0,0,0), +(289,2842,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(290,2840,774,4359,0,0,0,0,0,2,2,1,0,0,0,0,0), +(291,4371,1206,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(292,4371,1529,3864,0,0,0,0,0,1,1,1,0,0,0,0,0), +(293,3404,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(294,4461,4234,2321,0,0,0,0,0,6,4,2,0,0,0,0,0), +(295,4461,4234,2321,0,0,0,0,0,4,4,2,0,0,0,0,0), +(296,3164,2447,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(297,3858,3821,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(298,878,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(299,2589,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(300,5082,2318,2320,0,0,0,0,0,3,4,1,0,0,0,0,0), +(301,2589,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(302,2589,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(303,2592,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(304,2589,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(305,2592,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(306,12220,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(307,5465,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(308,5466,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(309,5467,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(310,5468,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(311,5469,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(312,5051,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(313,5470,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(314,5471,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(315,4371,4375,0,1206,0,0,0,0,2,2,0,1,0,0,0,0), +(316,5503,159,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(317,5504,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(318,5503,1179,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(319,2841,3466,5498,3478,0,0,0,0,6,1,2,2,0,0,0,0), +(320,2841,3466,5500,3478,2319,0,0,0,10,1,1,2,2,0,0,0), +(321,2997,2321,5498,0,0,0,0,0,3,2,1,0,0,0,0,0), +(322,5635,0,3371,0,0,0,0,0,2,0,1,0,0,0,0,0), +(323,5637,3356,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(324,6370,3820,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(325,4234,2321,7071,0,0,0,0,0,14,2,1,0,0,0,0,0), +(327,2996,2321,2604,0,0,0,0,0,4,1,1,0,0,0,0,0), +(328,2997,2604,2321,0,0,0,0,0,4,1,1,0,0,0,0,0), +(329,4305,2321,3182,0,0,0,0,0,2,2,2,0,0,0,0,0), +(330,4305,2321,3182,0,0,0,0,0,4,2,2,0,0,0,0,0), +(331,4305,4234,2321,2605,0,0,0,0,4,3,3,1,0,0,0,0), +(332,4305,2325,2321,0,0,0,0,0,5,1,4,0,0,0,0,0), +(333,5784,2318,2321,0,0,0,0,0,8,6,1,0,0,0,0,0), +(334,5784,4231,2318,2321,0,0,0,0,12,1,8,1,0,0,0,0), +(335,5785,4236,4234,2321,0,0,0,0,12,1,10,3,0,0,0,0), +(336,5785,4236,4234,4291,0,0,0,0,16,1,14,1,0,0,0,0), +(337,5026,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(338,5026,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(339,2318,2320,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(340,2319,2997,2321,0,0,0,0,0,8,1,1,0,0,0,0,0), +(341,2319,4340,2321,0,0,0,0,0,12,1,1,0,0,0,0,0), +(342,4234,4305,2321,0,0,0,0,0,12,2,2,0,0,0,0,0), +(343,4234,2321,1206,0,0,0,0,0,10,2,1,0,0,0,0,0), +(344,4234,4236,2321,0,0,0,0,0,8,1,2,0,0,0,0,0), +(345,4234,4305,4291,0,0,0,0,0,14,2,2,0,0,0,0,0), +(346,4234,4236,4291,0,0,0,0,0,4,1,1,0,0,0,0,0), +(347,3820,6370,3371,0,0,0,0,0,1,2,1,0,0,0,0,0), +(348,3357,3356,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(349,765,3371,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(350,4655,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(351,3575,3478,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(352,3575,3478,1705,0,0,0,0,0,4,2,1,0,0,0,0,0), +(353,3859,3486,0,0,0,0,0,0,5,2,0,0,0,0,0,0), +(354,3859,3486,4234,0,0,0,0,0,8,2,4,0,0,0,0,0), +(355,2453,2452,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(356,3369,3356,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(357,4402,6371,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(358,3819,3821,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(359,3357,3820,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(360,2840,2880,2318,0,0,0,0,0,12,2,2,0,0,0,0,0), +(361,10940,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(362,10940,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(363,6217,10940,10938,0,0,0,0,0,1,1,1,0,0,0,0,0), +(364,10940,10938,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(365,10938,10940,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(366,2840,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(367,10938,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(368,10940,10938,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(369,10940,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(370,2996,2320,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(371,2996,2320,2324,0,0,0,0,0,3,1,1,0,0,0,0,0), +(372,2996,2320,2604,0,0,0,0,0,3,1,1,0,0,0,0,0), +(373,2996,2320,6260,0,0,0,0,0,3,1,1,0,0,0,0,0), +(374,2996,2320,6260,0,0,0,0,0,4,2,2,0,0,0,0,0), +(375,2997,2321,2605,0,0,0,0,0,3,2,1,0,0,0,0,0), +(376,2997,2321,6260,0,0,0,0,0,4,2,2,0,0,0,0,0), +(377,2997,2321,2604,0,0,0,0,0,5,3,3,0,0,0,0,0), +(378,10940,10978,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(379,10940,10938,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(380,6291,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(381,6303,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(382,6289,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(383,6317,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(384,6308,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(385,10938,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(386,10940,10939,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(387,10939,10938,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(388,10940,10939,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(389,10940,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(390,10940,10939,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(391,10940,10939,10978,0,0,0,0,0,2,1,1,0,0,0,0,0), +(392,10939,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(393,6338,10940,10939,6218,0,0,0,0,1,6,3,1,0,0,0,0), +(394,2841,3470,0,0,0,0,0,0,6,6,0,0,0,0,0,0), +(395,2842,3470,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(396,6361,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(397,6362,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(398,6358,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(399,6359,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(400,2452,6370,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(401,6371,3356,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(402,10940,10998,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(403,10998,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(404,6371,10998,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(405,10940,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(406,10940,10998,0,0,0,0,0,0,6,2,0,0,0,0,0,0), +(407,2997,6260,4340,2321,0,0,0,0,4,2,1,1,0,0,0,0), +(408,2997,2605,4340,2321,0,0,0,0,4,2,1,1,0,0,0,0), +(409,4306,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(410,4306,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(411,1475,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(412,1288,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(413,6470,4231,2321,0,0,0,0,0,4,1,1,0,0,0,0,0), +(414,6470,2321,0,0,0,0,0,0,5,2,0,0,0,0,0,0), +(415,6471,6470,2321,0,0,0,0,0,6,4,2,0,0,0,0,0), +(416,6522,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(417,6522,2449,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(418,4611,4377,4306,0,0,0,0,0,1,1,1,0,0,0,0,0), +(419,2318,4231,2320,5498,0,0,0,0,6,1,4,1,0,0,0,0), +(420,6714,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(421,2841,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(422,4364,2592,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(423,2840,774,3470,0,0,0,0,0,12,2,2,0,0,0,0,0), +(424,2840,818,3470,0,0,0,0,0,16,2,3,0,0,0,0,0), +(425,2841,1210,3478,0,0,0,0,0,8,3,4,0,0,0,0,0), +(426,2996,2320,6260,2324,0,0,0,0,2,1,1,1,0,0,0,0), +(427,2997,2324,2321,0,0,0,0,0,3,4,1,0,0,0,0,0), +(428,4305,2324,4291,0,0,0,0,0,3,2,1,0,0,0,0,0), +(429,4305,2604,4291,0,0,0,0,0,3,2,1,0,0,0,0,0), +(430,6889,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(431,3173,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(432,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(433,4305,6260,2321,0,0,0,0,0,4,2,3,0,0,0,0,0), +(434,4305,6260,2321,0,0,0,0,0,2,2,1,0,0,0,0,0), +(435,4305,2321,0,0,0,0,0,0,3,2,0,0,0,0,0,0), +(436,4305,7067,2321,0,0,0,0,0,3,1,2,0,0,0,0,0), +(437,4305,7070,6260,2321,7071,0,0,0,4,1,2,2,1,0,0,0), +(438,3575,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(439,4339,7067,7070,7068,7069,4291,0,0,2,2,2,2,2,2,0,0), +(440,4305,7071,2604,4291,0,0,0,0,4,1,2,1,0,0,0,0), +(441,4305,4291,0,0,0,0,0,0,5,2,0,0,0,0,0,0), +(442,2996,2320,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(443,4305,2319,6048,2321,0,0,0,0,3,2,1,2,0,0,0,0), +(444,4305,4234,6048,2321,0,0,0,0,3,2,2,2,0,0,0,0), +(445,4305,4234,929,2321,0,0,0,0,3,2,4,1,0,0,0,0), +(446,4305,2605,4291,0,0,0,0,0,5,2,1,0,0,0,0,0), +(447,4305,6260,2321,0,0,0,0,0,3,2,2,0,0,0,0,0), +(448,4305,2604,6371,4291,0,0,0,0,5,2,2,1,0,0,0,0), +(449,4305,2604,2321,0,0,0,0,0,4,2,2,0,0,0,0,0), +(450,4305,6371,2604,4291,0,0,0,0,5,2,2,2,0,0,0,0), +(451,4305,7072,6260,4291,0,0,0,0,6,2,2,2,0,0,0,0), +(452,4305,7067,4234,7071,4291,0,0,0,5,4,4,1,2,0,0,0), +(453,4305,2604,4291,0,0,0,0,0,4,2,2,0,0,0,0,0), +(454,4305,7068,3827,2604,4291,0,0,0,8,4,2,4,1,0,0,0), +(455,4305,7068,6371,4304,2604,4291,0,0,6,2,2,2,4,2,0,0), +(456,2840,2880,3470,2318,0,0,0,0,6,1,1,1,0,0,0,0), +(457,10026,10559,4234,9061,10560,0,0,0,1,2,4,2,1,0,0,0), +(458,7189,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(459,7273,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0), +(460,2318,2320,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(461,2318,2320,0,0,0,0,0,0,2,3,0,0,0,0,0,0), +(462,2318,2320,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(463,2318,2320,0,0,0,0,0,0,3,4,0,0,0,0,0,0), +(464,2318,2320,0,0,0,0,0,0,5,5,0,0,0,0,0,0), +(465,2318,2320,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(466,2318,4231,2321,0,0,0,0,0,10,1,1,0,0,0,0,0), +(467,7286,2319,2321,0,0,0,0,0,12,4,1,0,0,0,0,0), +(468,2604,2319,2321,0,0,0,0,0,6,10,1,0,0,0,0,0), +(469,2457,2319,2321,0,0,0,0,0,1,6,1,0,0,0,0,0), +(470,2319,4233,2321,0,0,0,0,0,8,4,2,0,0,0,0,0), +(471,2319,3356,2321,0,0,0,0,0,8,4,2,0,0,0,0,0), +(472,2319,7067,2321,0,0,0,0,0,6,1,2,0,0,0,0,0), +(473,2319,5373,2321,0,0,0,0,0,10,2,2,0,0,0,0,0), +(474,2319,7067,2997,2321,0,0,0,0,12,2,2,2,0,0,0,0), +(475,4234,2321,0,0,0,0,0,0,8,2,0,0,0,0,0,0), +(476,4234,2321,0,0,0,0,0,0,8,2,0,0,0,0,0,0), +(477,4234,2325,2321,0,0,0,0,0,10,1,2,0,0,0,0,0), +(478,4234,3824,2321,0,0,0,0,0,10,1,2,0,0,0,0,0), +(479,7392,4234,2321,0,0,0,0,0,4,10,2,0,0,0,0,0), +(480,4234,7067,7070,2321,0,0,0,0,6,2,2,2,0,0,0,0), +(481,4234,2325,4291,0,0,0,0,0,16,1,2,0,0,0,0,0), +(482,7392,4234,4291,0,0,0,0,0,6,8,2,0,0,0,0,0), +(483,4234,4305,2325,7071,0,0,0,0,10,2,2,1,0,0,0,0), +(484,4234,10285,0,4291,0,0,0,0,8,2,0,2,0,0,0,0), +(485,4234,2459,4337,4291,0,0,0,0,10,2,2,1,0,0,0,0), +(486,2841,4375,814,818,774,0,0,0,6,1,2,1,1,0,0,0), +(487,2841,6530,4364,0,0,0,0,0,2,1,1,0,0,0,0,0), +(488,3575,4375,814,4306,1210,7191,0,0,6,2,2,2,2,1,0,0), +(489,2452,159,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(490,7741,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(491,7740,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(492,3575,5635,3486,0,0,0,0,0,8,4,2,0,0,0,0,0), +(493,3575,3486,0,0,0,0,0,0,20,4,0,0,0,0,0,0), +(494,3575,5637,5635,0,0,0,0,0,10,2,2,0,0,0,0,0), +(495,3575,5637,3486,0,0,0,0,0,12,4,2,0,0,0,0,0), +(496,3575,3486,5637,0,0,0,0,0,14,3,2,0,0,0,0,0), +(497,3859,3486,0,0,0,0,0,0,16,3,0,0,0,0,0,0), +(498,7912,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(499,7912,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(500,7912,4306,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(501,3860,4234,0,0,0,0,0,0,8,6,0,0,0,0,0,0), +(502,3860,4338,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(503,3860,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(504,3860,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(505,3859,3864,7966,0,0,0,0,0,14,1,1,0,0,0,0,0), +(506,3860,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(507,3860,6037,7966,0,0,0,0,0,4,2,4,0,0,0,0,0), +(508,3860,4234,4338,0,0,0,0,0,8,6,4,0,0,0,0,0), +(509,3860,6037,7966,0,0,0,0,0,12,1,1,0,0,0,0,0), +(510,3860,4338,6037,7966,0,0,0,0,10,6,1,1,0,0,0,0), +(511,3860,6037,4304,0,0,0,0,0,12,1,6,0,0,0,0,0), +(512,3860,6037,7909,3864,5966,7966,0,0,10,8,3,3,1,2,0,0), +(513,3860,7067,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(514,3860,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0), +(515,3860,4338,0,0,0,0,0,0,10,6,0,0,0,0,0,0), +(516,3860,7966,0,0,0,0,0,0,4,3,0,0,0,0,0,0), +(517,3860,4304,0,0,0,0,0,0,14,4,0,0,0,0,0,0), +(518,3860,4304,0,0,0,0,0,0,14,4,0,0,0,0,0,0), +(519,3860,7909,0,0,0,0,0,0,14,1,0,0,0,0,0,0), +(520,3860,6037,7077,7966,0,0,0,0,16,6,1,1,0,0,0,0), +(521,3860,6037,7910,7971,7966,0,0,0,12,12,2,2,2,0,0,0), +(522,7970,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(523,3860,6037,4304,7966,7909,0,0,0,14,2,4,1,1,0,0,0), +(524,3860,6037,7966,0,0,0,0,0,16,2,1,0,0,0,0,0), +(525,2840,2880,3470,2318,0,0,0,0,10,2,1,1,0,0,0,0), +(526,2841,3466,2319,0,0,0,0,0,8,1,1,0,0,0,0,0), +(527,2841,3466,2319,0,0,0,0,0,12,2,2,0,0,0,0,0), +(528,2841,3466,2319,0,0,0,0,0,14,1,2,0,0,0,0,0), +(529,3860,3864,7966,4234,0,0,0,0,12,2,1,4,0,0,0,0), +(530,3860,7909,7966,4304,0,0,0,0,16,2,1,4,0,0,0,0), +(531,3860,6037,7966,4304,0,0,0,0,14,4,1,2,0,0,0,0), +(533,3860,7971,1210,7966,4304,0,0,0,16,1,4,1,2,0,0,0), +(534,3860,7075,6037,3864,1529,7966,4304,0,24,4,6,5,5,4,4,0), +(535,3860,7909,1705,1206,7966,4338,0,0,14,1,2,2,1,2,0,0), +(536,3860,7081,6037,3823,7909,7966,4304,0,28,6,8,2,6,4,2,0), +(537,3860,7075,7966,4304,0,0,0,0,18,2,1,4,0,0,0,0), +(538,3860,7972,6037,7966,4304,0,0,0,28,10,10,6,6,0,0,0), +(539,3860,6037,7910,7966,4304,0,0,0,12,6,2,1,2,0,0,0), +(540,3860,6037,7910,7081,7966,4304,0,0,30,16,6,4,8,6,0,0), +(541,17032,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(542,3858,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(543,7911,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(544,8147,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(545,8148,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(546,8169,8150,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(547,4304,4291,0,0,0,0,0,0,5,1,0,0,0,0,0,0), +(548,4234,4236,4291,0,0,0,0,0,12,2,2,0,0,0,0,0), +(549,4304,4291,0,0,0,0,0,0,7,2,0,0,0,0,0,0), +(550,4304,4291,0,0,0,0,0,0,5,2,0,0,0,0,0,0), +(551,4304,8167,8343,0,0,0,0,0,6,8,1,0,0,0,0,0), +(552,4304,8167,8343,0,0,0,0,0,6,12,1,0,0,0,0,0), +(553,4304,4338,4291,0,0,0,0,0,8,6,3,0,0,0,0,0), +(554,4304,8167,8343,0,0,0,0,0,8,12,1,0,0,0,0,0), +(555,4304,0,8343,0,0,0,0,0,10,0,1,0,0,0,0,0), +(556,4304,8154,4291,0,0,0,0,0,12,12,4,0,0,0,0,0), +(557,4304,8153,8172,0,0,0,0,0,10,1,1,0,0,0,0,0), +(558,4304,0,8343,0,0,0,0,0,8,0,1,0,0,0,0,0), +(559,4304,8154,4291,0,0,0,0,0,10,4,2,0,0,0,0,0), +(560,4304,8154,4291,0,0,0,0,0,6,8,2,0,0,0,0,0), +(561,4304,8153,8172,0,0,0,0,0,12,2,1,0,0,0,0,0), +(562,4304,8153,8172,0,0,0,0,0,10,2,1,0,0,0,0,0), +(563,4304,4291,0,0,0,0,0,0,14,4,0,0,0,0,0,0), +(564,4304,4291,0,0,0,0,0,0,12,4,0,0,0,0,0,0), +(565,4304,8167,8343,0,0,0,0,0,14,24,1,0,0,0,0,0), +(566,4304,8154,4291,0,0,0,0,0,12,12,6,0,0,0,0,0), +(567,4304,8167,8343,0,0,0,0,0,14,28,1,0,0,0,0,0), +(568,4304,8343,0,0,0,0,0,0,16,2,0,0,0,0,0,0), +(569,4304,0,8343,0,0,0,0,0,14,0,2,0,0,0,0,0), +(570,4304,0,8343,0,0,0,0,0,14,0,2,0,0,0,0,0), +(571,4304,8154,8343,0,0,0,0,0,12,16,2,0,0,0,0,0), +(572,4304,8153,8172,0,0,0,0,0,14,4,2,0,0,0,0,0), +(573,4304,8154,8343,0,0,0,0,0,14,8,2,0,0,0,0,0), +(574,4304,8154,8343,0,0,0,0,0,10,20,2,0,0,0,0,0), +(575,4304,8153,8172,0,0,0,0,0,16,6,2,0,0,0,0,0), +(576,4304,8153,8172,0,0,0,0,0,16,6,2,0,0,0,0,0), +(577,4304,8165,8343,8172,0,0,0,0,24,12,4,2,0,0,0,0), +(578,4304,8153,8172,8343,0,0,0,0,18,12,4,1,0,0,0,0), +(579,4304,7079,0,8172,8343,0,0,0,20,4,0,1,4,0,0,0), +(580,4304,7077,0,8172,8343,0,0,0,30,8,0,2,4,0,0,0), +(581,4304,17056,7971,8172,8343,0,0,0,25,20,2,4,4,0,0,0), +(582,4304,8165,8343,8172,0,0,0,0,40,30,4,4,0,0,0,0), +(583,4338,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(584,4338,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(585,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(586,17032,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(587,17032,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(588,17032,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(589,17032,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(590,17032,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(591,9251,9252,9253,0,0,0,0,0,1,1,1,0,0,0,0,0), +(592,3358,3821,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(593,3820,3821,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(594,3355,3821,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(595,4625,3821,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(596,7067,3821,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(597,3358,8831,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(598,3860,3577,6037,0,0,0,0,0,5,1,1,0,0,0,0,0), +(599,4625,9260,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(600,8838,3358,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(601,8153,8831,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(602,3575,9262,8831,4625,0,0,0,0,4,1,4,4,0,0,0,0), +(603,8831,3371,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(604,8839,3821,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(605,8845,8838,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(606,8839,3358,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(607,0,8839,3371,0,0,0,0,0,0,3,1,0,0,0,0,0), +(608,8838,3821,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(609,8831,3371,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(610,8838,8846,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(611,8845,4342,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(612,8845,3371,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(613,8846,8845,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(614,8846,3371,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(615,3575,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(616,3860,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(617,9279,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(618,9280,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(619,9282,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(620,9258,9256,9255,9257,0,0,0,0,1,1,1,1,0,0,0,0), +(621,9281,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(622,3859,3577,3486,0,0,0,0,0,10,4,4,0,0,0,0,0), +(623,0,9379,0,0,0,0,0,0,0,1,0,0,0,0,0,0), +(624,9719,3859,3466,7068,3486,0,0,0,1,4,4,2,2,0,0,0), +(625,2996,2320,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(626,2996,2318,2320,0,0,0,0,0,2,1,1,0,0,0,0,0), +(627,2996,2321,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(628,2997,2604,2321,0,0,0,0,0,5,3,1,0,0,0,0,0), +(629,4339,4291,0,0,0,0,0,0,2,3,0,0,0,0,0,0), +(630,4339,4291,0,0,0,0,0,0,2,3,0,0,0,0,0,0), +(631,4339,8343,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(632,4339,10285,8343,0,0,0,0,0,3,2,1,0,0,0,0,0), +(633,4339,8343,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(634,4339,10285,8343,0,0,0,0,0,3,2,1,0,0,0,0,0), +(635,4339,2604,8343,0,0,0,0,0,3,2,1,0,0,0,0,0), +(636,4339,2324,8343,0,0,0,0,0,1,1,1,0,0,0,0,0), +(637,4339,2604,8343,0,0,0,0,0,3,2,1,0,0,0,0,0), +(638,4339,6261,8343,0,0,0,0,0,1,1,1,0,0,0,0,0), +(639,4339,7079,8343,0,0,0,0,0,4,2,2,0,0,0,0,0), +(640,4339,7079,8343,0,0,0,0,0,3,2,2,0,0,0,0,0), +(641,4339,6261,8343,0,0,0,0,0,2,2,1,0,0,0,0,0), +(642,4339,4291,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(643,4339,2604,8343,0,0,0,0,0,3,2,2,0,0,0,0,0), +(644,4339,8153,10286,8343,0,0,0,0,4,4,2,2,0,0,0,0), +(645,4339,7079,8343,0,0,0,0,0,5,3,2,0,0,0,0,0), +(646,4339,7077,8343,0,0,0,0,0,5,2,2,0,0,0,0,0), +(647,4339,8153,10286,8343,0,0,0,0,6,6,2,2,0,0,0,0), +(648,4339,10285,8343,0,0,0,0,0,5,5,2,0,0,0,0,0), +(649,4339,8343,0,0,0,0,0,0,3,2,0,0,0,0,0,0), +(650,4339,8343,4304,0,0,0,0,0,3,2,2,0,0,0,0,0), +(651,4339,8343,0,0,0,0,0,0,3,2,0,0,0,0,0,0), +(652,4339,4342,8343,0,0,0,0,0,2,2,2,0,0,0,0,0), +(653,4339,10285,8343,0,0,0,0,0,5,4,2,0,0,0,0,0), +(654,4339,2325,8343,2324,0,0,0,0,3,1,1,1,0,0,0,0), +(655,4339,2604,8343,0,0,0,0,0,4,2,3,0,0,0,0,0), +(656,4339,2604,8343,0,0,0,0,0,4,2,2,0,0,0,0,0), +(657,4339,10290,8343,0,0,0,0,0,3,1,1,0,0,0,0,0), +(658,4339,0,8343,0,0,0,0,0,5,0,2,0,0,0,0,0), +(659,4339,10285,8343,4304,0,0,0,0,6,6,3,2,0,0,0,0), +(660,4339,7079,8343,0,0,0,0,0,4,4,2,0,0,0,0,0), +(661,4339,2604,8343,0,0,0,0,0,4,2,2,0,0,0,0,0), +(662,4339,8343,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(663,4339,10285,8343,0,0,0,0,0,2,8,2,0,0,0,0,0), +(664,4339,7079,8343,0,0,0,0,0,5,6,3,0,0,0,0,0), +(665,4339,8343,0,0,0,0,0,0,5,3,0,0,0,0,0,0), +(666,4339,8343,0,0,0,0,0,0,4,3,0,0,0,0,0,0), +(667,4339,7079,8343,4304,0,0,0,0,6,6,3,2,0,0,0,0), +(668,4339,8343,0,2324,0,0,0,0,5,3,0,1,0,0,0,0), +(669,4339,8153,10286,8343,6037,1529,0,0,8,4,2,3,1,1,0,0), +(670,4339,8343,0,0,0,0,0,0,5,3,0,0,0,0,0,0), +(671,2841,2842,3478,0,0,0,0,0,12,4,2,0,0,0,0,0), +(672,2840,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(673,7970,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(674,5024,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(675,3577,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(676,7912,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(677,10505,4306,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(678,4234,3864,0,0,0,0,0,0,6,2,0,0,0,0,0,0), +(679,3860,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(680,3859,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(681,3860,4338,10505,0,0,0,0,0,1,1,1,0,0,0,0,0), +(682,4385,3864,7068,4234,0,0,0,0,1,2,2,4,0,0,0,0), +(683,10559,10560,4400,3860,7068,0,0,0,1,1,1,4,2,0,0,0), +(684,3860,10505,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(685,10559,7909,4304,0,0,0,0,0,1,2,2,0,0,0,0,0), +(686,3860,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(687,10561,10560,10505,0,0,0,0,0,1,1,1,0,0,0,0,0), +(688,4304,7909,10592,0,0,0,0,0,4,2,1,0,0,0,0,0), +(689,3821,3818,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(690,10559,10560,4400,3860,3864,0,0,0,2,1,1,6,2,0,0,0), +(691,4304,7910,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(692,4339,10285,10560,10505,0,0,0,0,4,2,1,4,0,0,0,0), +(693,3860,10561,6037,818,774,0,0,0,8,1,1,4,4,0,0,0), +(694,4304,7910,0,0,0,0,0,0,6,2,0,0,0,0,0,0), +(695,10561,10560,10505,0,0,0,0,0,2,1,2,0,0,0,0,0), +(696,10559,7910,6037,0,0,0,0,0,1,1,2,0,0,0,0,0), +(697,3860,10505,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(698,4304,1529,7909,10286,8153,0,0,0,8,3,3,2,2,0,0,0), +(699,3860,7077,6037,0,0,7910,0,0,4,2,4,0,0,1,0,0), +(700,10648,10647,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(701,10559,3860,10505,10558,7068,0,0,0,2,4,5,1,1,0,0,0), +(702,3860,3864,7067,0,0,0,0,0,8,1,4,0,0,0,0,0), +(703,3860,3864,7068,0,0,0,0,0,8,1,4,0,0,0,0,0), +(704,0,10505,3860,0,0,0,0,0,0,2,2,0,0,0,0,0), +(706,10561,3860,4389,10560,0,0,0,0,1,2,1,1,0,0,0,0), +(707,10465,10663,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(709,10561,9061,10507,10560,0,0,0,0,1,1,6,1,0,0,0,0), +(710,10561,10505,6037,10560,4407,0,0,0,2,4,6,1,2,0,0,0), +(711,10543,9061,3860,10560,0,0,0,0,1,4,4,1,0,0,0,0), +(712,10559,10560,12808,7972,9060,0,0,0,2,1,1,4,1,0,0,0), +(713,4338,10505,10560,0,0,0,0,0,1,3,1,0,0,0,0,0), +(715,10648,10647,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(716,10500,10559,10558,0,4234,0,0,0,1,1,2,0,2,0,0,0), +(717,10559,10560,3860,0,1529,0,0,0,1,1,4,0,2,0,0,0), +(718,10559,10560,3860,0,0,0,0,0,1,1,4,0,0,0,0,0), +(719,10559,10285,4337,10505,3860,0,0,0,1,2,4,2,4,0,0,0), +(720,7387,3860,6037,10560,7909,0,0,0,1,4,2,1,2,0,0,0), +(721,10561,3860,4389,10560,0,0,0,0,1,2,1,1,0,0,0,0), +(722,10026,10559,4234,10505,4389,0,0,0,1,2,4,8,4,0,0,0), +(723,10561,6037,3860,9060,10558,1529,0,0,1,6,6,2,1,2,0,0), +(724,3860,6037,10558,7910,4338,0,0,0,10,4,1,2,4,0,0,0), +(725,10559,9061,3860,6037,10560,0,0,0,2,4,6,6,1,0,0,0), +(726,3821,159,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(727,10505,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(728,10577,3860,10505,0,0,0,0,0,1,1,3,0,0,0,0,0), +(729,10938,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(730,10998,10940,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(731,10998,10940,0,0,0,0,0,0,1,6,0,0,0,0,0,0), +(732,11018,11022,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(733,10998,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(734,10940,10978,0,0,0,0,0,0,6,1,0,0,0,0,0,0), +(735,10998,10940,10978,0,0,0,0,0,1,1,1,0,0,0,0,0), +(736,10998,10940,0,0,0,0,0,0,2,4,0,0,0,0,0,0), +(737,10998,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(738,11083,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(739,11083,11084,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(740,11082,6048,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(741,11083,11084,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(742,11083,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(743,10940,11082,11084,0,0,0,0,0,2,1,1,0,0,0,0,0), +(744,11082,10998,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(745,11083,2772,0,0,0,0,0,0,1,3,0,0,0,0,0,0), +(746,11083,3356,0,0,0,0,0,0,1,3,0,0,0,0,0,0), +(747,11083,6370,0,0,0,0,0,0,1,3,0,0,0,0,0,0), +(748,11082,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(749,11082,11083,11084,0,0,0,0,0,1,1,1,0,0,0,0,0), +(750,11128,5500,11082,11083,6339,0,0,0,1,1,2,2,1,0,0,0), +(751,11134,11083,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(752,11134,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(753,11138,11083,0,0,0,0,0,0,1,3,0,0,0,0,0,0), +(754,11083,11134,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(755,11083,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(756,11134,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(757,11083,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(758,11134,11083,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(759,11083,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(760,11134,5637,11138,0,0,0,0,0,1,2,1,0,0,0,0,0), +(761,11134,7067,11138,0,0,0,0,0,1,1,1,0,0,0,0,0), +(762,11134,7068,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(763,11135,11137,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(764,11137,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(765,11135,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(766,11135,11134,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(767,11135,11137,11139,0,0,0,0,0,2,2,1,0,0,0,0,0), +(768,11135,11139,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(769,11137,11139,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(770,11137,7392,0,0,0,0,0,0,1,3,0,0,0,0,0,0), +(771,11135,11137,11139,0,0,0,0,0,2,2,1,0,0,0,0,0), +(772,11144,7971,11135,11137,11130,0,0,0,1,1,2,2,1,0,0,0), +(773,11148,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(774,11174,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(775,11137,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(776,11174,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(777,11174,11137,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(778,11137,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(779,11174,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(780,11137,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(781,11137,6037,0,0,0,0,0,0,3,3,0,0,0,0,0,0), +(782,11174,11137,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(783,11137,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(784,11137,8838,0,0,0,0,0,0,3,3,0,0,0,0,0,0), +(785,11174,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(786,11174,11137,0,0,0,0,0,0,2,3,0,0,0,0,0,0), +(787,11177,7909,11174,0,0,0,0,0,1,1,1,0,0,0,0,0), +(788,11177,7078,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(789,11175,11176,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(791,11177,11176,9224,0,0,0,0,0,1,2,1,0,0,0,0,0), +(792,11175,11174,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(793,11175,11176,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(794,11178,3829,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(795,11175,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(796,11178,11176,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(797,11176,11175,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(798,11178,11176,11175,0,0,0,0,0,1,3,2,0,0,0,0,0), +(799,11178,11175,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(800,11176,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(801,11178,11176,0,0,0,0,0,0,2,3,0,0,0,0,0,0), +(802,11178,8153,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(803,11147,11148,0,0,0,0,0,0,1,4,0,0,0,0,0,0), +(804,4470,10938,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(805,3577,3478,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(806,6037,3486,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(807,4470,10939,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(808,11291,11134,11083,0,0,0,0,0,1,1,1,0,0,0,0,0), +(809,11291,11135,11137,0,0,0,0,0,1,1,1,0,0,0,0,0), +(810,11177,7077,11174,0,0,0,0,0,2,1,1,0,0,0,0,0), +(811,11370,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(812,4304,8172,8949,4291,0,0,0,0,12,1,1,4,0,0,0,0), +(813,4304,8172,8951,4291,0,0,0,0,10,1,1,6,0,0,0,0), +(814,3860,4338,10505,0,0,0,0,0,1,1,1,0,0,0,0,0), +(815,11371,7077,0,0,0,0,0,0,18,4,0,0,0,0,0,0), +(816,11371,7077,0,0,0,0,0,0,10,2,0,0,0,0,0,0), +(817,11371,7077,0,0,0,0,0,0,26,4,0,0,0,0,0,0), +(818,11371,7077,0,0,0,0,0,0,6,1,0,0,0,0,0,0), +(819,11371,7077,0,0,0,0,0,0,20,8,0,0,0,0,0,0), +(820,11616,11613,0,0,0,0,0,0,5,1,0,0,0,0,0,0), +(821,11613,11616,0,0,0,0,0,0,1,5,0,0,0,0,0,0), +(822,0,7078,14343,0,0,0,0,0,0,3,3,0,0,0,0,0), +(823,4394,7077,7191,3860,0,0,0,0,1,1,1,6,0,0,0,0), +(824,7075,4389,7191,3860,6037,0,0,0,1,2,1,2,1,0,0,0), +(825,8831,3371,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(826,1015,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(827,12184,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(828,12203,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(829,12202,159,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(830,12037,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(831,12037,2596,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(832,12037,4402,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(833,12204,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(834,12206,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(835,12207,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(836,12223,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(837,3859,3466,1206,7067,4234,0,0,0,10,2,1,1,1,0,0,0), +(838,3859,3577,7068,4234,0,0,0,0,10,4,2,2,0,0,0,0), +(839,9280,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(840,12341,12342,12343,0,0,0,0,0,1,1,1,0,0,0,0,0), +(841,10620,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(842,12442,12440,0,0,0,0,0,0,1,6,0,0,0,0,0,0), +(843,12533,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(844,6265,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(845,12365,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(846,12365,14047,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(847,12365,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(848,12359,12361,0,0,0,0,0,0,16,1,0,0,0,0,0,0), +(849,12359,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(850,12359,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(851,12359,7077,0,0,0,0,0,0,10,2,0,0,0,0,0,0), +(852,12359,8170,0,0,0,0,0,0,12,6,0,0,0,0,0,0), +(853,12359,8170,0,0,0,0,0,0,10,6,0,0,0,0,0,0), +(854,12359,7077,7910,0,0,0,0,0,18,2,1,0,0,0,0,0), +(855,12359,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(856,12359,12655,12803,8153,12364,0,0,0,40,2,4,4,1,0,0,0), +(857,12359,12644,7076,0,0,0,0,0,4,4,2,0,0,0,0,0), +(858,12359,8170,0,0,0,0,0,0,12,8,0,0,0,0,0,0), +(859,12359,7910,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(860,12359,7077,0,0,0,0,0,0,18,4,0,0,0,0,0,0), +(861,12359,12655,7078,7910,0,0,0,0,20,6,2,4,0,0,0,0), +(862,12359,7077,0,0,0,0,0,0,14,4,0,0,0,0,0,0), +(863,12359,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0), +(864,12359,7910,0,0,0,0,0,0,18,1,0,0,0,0,0,0), +(865,12359,7077,0,0,0,0,0,0,18,4,0,0,0,0,0,0), +(866,12359,12360,12364,7080,0,0,0,0,20,4,2,2,0,0,0,0), +(867,12359,12655,7080,12361,0,0,0,0,20,4,4,4,0,0,0,0), +(868,12359,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(869,12359,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0), +(870,12359,12360,3577,0,0,0,0,0,20,2,6,0,0,0,0,0), +(871,12359,12360,2842,0,0,0,0,0,20,2,10,0,0,0,0,0), +(872,12359,12662,12361,7910,0,0,0,0,40,10,4,4,0,0,0,0), +(873,12359,12655,6037,3577,12800,0,0,0,20,4,6,6,2,0,0,0), +(874,12359,7077,0,0,0,0,0,0,20,4,0,0,0,0,0,0), +(875,12359,12360,6037,12364,0,0,0,0,30,2,2,1,0,0,0,0), +(876,12359,12655,0,12799,12364,0,0,0,40,4,0,6,2,0,0,0), +(877,12359,12360,0,12361,12800,0,0,0,80,12,0,10,4,0,0,0), +(878,12359,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0), +(879,12359,12360,7910,0,0,0,0,0,40,2,1,0,0,0,0,0), +(880,12359,12360,7910,0,0,0,0,0,40,2,1,0,0,0,0,0), +(881,12360,12655,7076,12361,12799,0,0,0,15,20,10,4,4,0,0,0), +(882,12360,12655,7076,12799,12800,0,0,0,6,16,6,2,1,0,0,0), +(883,12360,12655,7080,12361,12364,0,0,0,10,20,6,2,1,0,0,0), +(884,12360,12655,7076,7080,12364,12800,0,0,8,24,4,4,2,2,0,0), +(885,12360,12655,12364,12800,0,0,0,0,30,30,6,6,0,0,0,0), +(886,12721,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(887,12359,12644,8170,0,0,0,0,0,10,2,4,0,0,0,0,0), +(888,12359,12803,8153,12799,12644,8170,0,0,30,6,6,6,2,8,0,0), +(889,12359,3577,6037,12361,8170,0,0,0,30,4,2,2,4,0,0,0), +(890,12359,12799,12644,8170,0,0,0,0,10,2,2,4,0,0,0,0), +(891,12359,12655,7910,12361,12644,8170,0,0,30,4,4,4,2,4,0,0), +(892,12359,12644,8170,0,0,0,0,0,12,6,6,0,0,0,0,0), +(893,12359,12655,12364,12804,8170,0,0,0,20,6,2,4,4,0,0,0), +(894,12655,7078,7077,12800,12644,0,0,0,10,4,4,2,2,0,0,0), +(895,12359,12799,12644,8170,0,0,0,0,30,2,2,4,0,0,0,0), +(896,12655,12360,12804,12799,12361,12364,0,0,6,2,4,2,2,1,0,0), +(897,12359,7077,7910,8170,0,0,0,0,30,4,4,4,0,0,0,0), +(898,12359,12360,12662,12808,12361,12644,8170,0,40,2,16,8,2,2,4,0), +(899,12655,12360,12662,7910,12644,0,0,0,10,10,8,10,2,0,0,0), +(900,12655,12804,12364,12800,12644,0,0,0,20,20,2,2,2,0,0,0), +(901,12359,12360,12809,12810,7076,0,0,0,50,15,4,6,10,0,0,0), +(902,12360,12800,12811,12799,12810,12644,0,0,15,8,1,4,8,2,0,0), +(903,12359,12360,12808,12364,12644,12810,0,0,40,12,10,8,2,4,0,0), +(904,12360,12361,12800,7080,12644,12810,0,0,18,8,8,4,2,4,0,0), +(905,12655,12364,12799,7076,12810,0,0,0,20,8,8,6,4,0,0,0), +(906,12360,12810,12644,0,0,0,0,0,20,6,2,0,0,0,0,0), +(907,12360,12655,12810,7910,12800,12799,12644,0,10,10,2,6,6,6,4,0), +(908,12886,12887,12888,0,0,0,0,0,1,1,1,0,0,0,0,0), +(909,12359,11176,0,0,0,0,0,0,1,3,0,0,0,0,0,0), +(910,8170,16202,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(911,12359,12363,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(912,13157,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(913,13157,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(914,13157,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(915,5637,3356,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(916,13422,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(917,8846,3371,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(918,8838,8839,3371,0,0,0,0,0,2,2,1,0,0,0,0,0), +(919,13423,8838,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(920,13463,13466,3371,0,0,0,0,0,1,2,1,0,0,0,0,0), +(921,13464,13465,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(922,8846,13466,3371,0,0,0,0,0,2,2,1,0,0,0,0,0), +(923,7082,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(924,7078,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(925,7076,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(926,7080,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(927,12808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(928,7080,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(929,12803,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(930,7076,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(931,13423,10620,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(932,13465,13466,3371,0,0,0,0,0,2,2,1,0,0,0,0,0), +(933,13467,13466,3371,0,0,0,0,0,2,2,1,0,0,0,0,0), +(934,13463,13465,3371,0,0,0,0,0,3,1,1,0,0,0,0,0), +(935,7068,13463,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(936,7070,13463,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(937,7067,13463,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(938,11176,13463,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(939,3824,13463,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(940,7069,13463,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(941,13463,13467,3371,0,0,0,0,0,3,2,1,0,0,0,0,0), +(942,9149,25867,25868,22794,23571,0,0,0,1,1,1,2,5,0,0,0), +(943,13423,0,0,3371,0,0,0,0,7,0,0,1,0,0,0,0), +(944,8846,13423,13468,3371,0,0,0,0,7,3,1,1,0,0,0,0), +(945,13463,13467,13468,3371,0,0,0,0,7,3,1,1,0,0,0,0), +(946,13463,13465,13468,3371,0,0,0,0,7,3,1,1,0,0,0,0), +(947,13467,13465,13468,3371,0,0,0,0,7,3,1,1,0,0,0,0), +(948,4603,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(949,13754,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(950,13755,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(951,13758,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(952,13756,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(953,13759,159,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(954,13760,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(955,13888,159,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(956,13893,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(957,13889,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(958,14047,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(959,14048,14341,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(960,14048,6260,14341,0,0,0,0,0,5,2,1,0,0,0,0,0), +(961,14048,7079,14341,0,0,0,0,0,5,2,1,0,0,0,0,0), +(962,14048,8170,14341,0,0,0,0,0,5,2,1,0,0,0,0,0), +(963,14048,14227,14341,0,0,0,0,0,5,1,1,0,0,0,0,0), +(964,14048,14227,14341,0,0,0,0,0,5,1,1,0,0,0,0,0), +(965,14048,7077,14341,0,0,0,0,0,5,2,1,0,0,0,0,0), +(966,14048,14227,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(967,14048,9210,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(968,14048,6260,14341,0,0,0,0,0,5,2,1,0,0,0,0,0), +(969,14048,7077,14341,0,0,0,0,0,4,2,1,0,0,0,0,0), +(970,14048,9210,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(971,14048,3577,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(972,14048,3577,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(973,14048,9210,0,0,0,0,0,0,2,3,0,0,0,0,0,0), +(974,14048,0,14341,0,0,0,0,0,5,0,2,0,0,0,0,0), +(975,14048,7078,14341,0,0,0,0,0,5,1,1,0,0,0,0,0), +(976,14048,14256,14341,0,0,0,0,0,5,2,1,0,0,0,0,0), +(977,14048,3577,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(978,14048,11176,14341,0,0,0,0,0,4,1,1,0,0,0,0,0), +(979,14048,7078,7077,7068,14341,0,0,0,6,4,4,4,1,0,0,0), +(980,14048,0,8170,14341,0,0,0,0,4,0,2,1,0,0,0,0), +(981,14048,6260,14341,0,0,0,0,0,6,2,1,0,0,0,0,0), +(982,14048,7078,14341,0,0,0,0,0,6,1,1,0,0,0,0,0), +(983,14048,14256,12808,7080,14341,0,0,0,10,12,4,4,1,0,0,0), +(984,14048,14256,8170,14341,0,0,0,0,2,2,2,1,0,0,0,0), +(985,14048,14227,14341,0,0,0,0,0,5,2,1,0,0,0,0,0), +(986,14048,3577,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(987,14048,14342,14341,0,0,0,0,0,6,4,1,0,0,0,0,0), +(988,14048,9210,0,0,0,0,0,0,3,4,0,0,0,0,0,0), +(989,14048,14256,14341,0,0,0,0,0,2,2,1,0,0,0,0,0), +(990,14048,0,14341,0,0,0,0,0,6,0,2,0,0,0,0,0), +(991,14048,14342,14341,0,0,0,0,0,4,1,1,0,0,0,0,0), +(992,14048,11176,14341,0,0,0,0,0,8,2,1,0,0,0,0,0), +(993,14048,14342,14341,0,0,0,0,0,6,4,1,0,0,0,0,0), +(994,14048,14342,14341,0,0,0,0,0,5,5,1,0,0,0,0,0), +(995,14048,14227,8170,14341,0,0,0,0,7,2,4,1,0,0,0,0), +(996,14048,11176,7910,14341,0,0,0,0,6,4,1,1,0,0,0,0), +(997,14048,14256,12662,14341,0,0,0,0,8,3,2,2,0,0,0,0), +(998,14048,14342,12800,12810,14341,0,0,0,4,6,1,2,2,0,0,0), +(999,14048,14256,12662,8170,14341,0,0,0,7,3,2,4,2,0,0,0), +(1000,14048,14342,9210,13926,12364,12810,14341,0,10,10,10,6,6,8,2,0), +(1001,14048,14342,14344,17012,14341,0,0,0,8,12,2,2,2,0,0,0), +(1002,14048,14342,12811,13926,9210,14341,0,0,12,10,4,4,10,2,0,0), +(1003,14048,7078,7082,7076,7080,14341,0,0,12,10,10,10,10,2,0,0), +(1004,14048,12662,14256,7078,12808,14341,0,0,12,20,40,12,12,2,0,0), +(1006,14256,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1007,14047,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1008,14047,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1009,12359,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1010,5024,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1011,9320,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0), +(1012,5232,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1013,15447,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0), +(1014,8171,15409,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1015,8170,15408,14341,0,0,0,0,0,4,4,1,0,0,0,0,0), +(1016,8170,2325,14341,0,0,0,0,0,8,1,1,0,0,0,0,0), +(1017,8170,15412,14341,0,0,0,0,0,20,25,2,0,0,0,0,0), +(1018,8170,15408,14341,0,0,0,0,0,6,6,1,0,0,0,0,0), +(1019,8170,2325,14341,0,0,0,0,0,8,1,1,0,0,0,0,0), +(1020,8170,12803,14341,0,0,0,0,0,6,1,1,0,0,0,0,0), +(1021,8170,15414,14341,0,0,0,0,0,40,30,1,0,0,0,0,0), +(1022,8170,14047,14341,0,0,0,0,0,10,6,1,0,0,0,0,0), +(1023,8170,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(1024,8170,7078,7075,14341,0,0,0,0,6,1,1,1,0,0,0,0), +(1025,8170,15412,14341,0,0,0,0,0,20,25,1,0,0,0,0,0), +(1026,8170,12803,14341,0,0,0,0,0,12,4,1,0,0,0,0,0), +(1027,8170,17056,1529,14341,0,0,0,0,24,40,2,1,0,0,0,0), +(1028,8170,12803,14341,0,0,0,0,0,4,1,1,0,0,0,0,0), +(1029,8170,15408,14341,0,0,0,0,0,6,8,1,0,0,0,0,0), +(1030,8170,7971,0,14341,0,0,0,0,6,1,0,1,0,0,0,0), +(1031,8170,7080,14341,0,0,0,0,0,4,1,1,0,0,0,0,0), +(1032,8170,0,7082,14341,0,0,0,0,16,0,2,1,0,0,0,0), +(1033,8170,15419,14341,0,0,0,0,0,28,12,1,0,0,0,0,0), +(1034,8170,15408,14341,0,0,0,0,0,6,8,1,0,0,0,0,0), +(1035,8170,2325,14341,0,0,0,0,0,12,1,1,0,0,0,0,0), +(1036,8170,14047,14341,0,0,0,0,0,10,10,1,0,0,0,0,0), +(1037,8170,12803,14341,0,0,0,0,0,8,1,1,0,0,0,0,0), +(1038,8170,7080,14341,0,0,0,0,0,6,1,1,0,0,0,0,0), +(1039,8170,15408,14341,0,0,0,0,0,8,12,1,0,0,0,0,0), +(1040,8170,7078,7076,14341,0,0,0,0,8,1,1,1,0,0,0,0), +(1041,8170,15415,15407,14341,0,0,0,0,28,30,1,1,0,0,0,0), +(1042,8170,12803,15407,14341,0,0,0,0,16,6,1,1,0,0,0,0), +(1043,8170,0,7082,15407,14341,0,0,0,16,0,3,1,1,0,0,0), +(1044,8170,15419,14341,0,0,0,0,0,24,14,1,0,0,0,0,0), +(1045,8170,12803,14341,0,0,0,0,0,10,1,1,0,0,0,0,0), +(1046,8170,14047,14341,0,0,0,0,0,14,10,1,0,0,0,0,0), +(1047,8170,15407,2325,14341,0,0,0,0,12,1,3,1,0,0,0,0), +(1048,0,15417,14341,0,0,0,0,0,0,8,1,0,0,0,0,0), +(1049,8170,15416,15407,14341,0,0,0,0,25,25,1,2,0,0,0,0), +(1050,8170,17056,1529,15407,14341,0,0,0,35,40,1,1,1,0,0,0), +(1051,8170,7080,14341,0,0,0,0,0,6,1,1,0,0,0,0,0), +(1052,8170,15408,15407,14341,0,0,0,0,8,12,1,1,0,0,0,0), +(1053,8170,15415,12810,15407,14341,0,0,0,28,30,2,1,1,0,0,0), +(1054,8170,0,7082,14227,0,0,0,0,12,0,3,2,0,0,0,0), +(1055,8170,14047,12810,14341,0,0,0,0,18,12,2,1,0,0,0,0), +(1056,8170,2325,14341,0,0,0,0,0,14,2,2,0,0,0,0,0), +(1057,15410,14044,14341,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1058,8170,15416,0,15407,14341,0,0,0,20,15,0,1,1,0,0,0), +(1059,8170,12803,14342,15407,14341,0,0,0,16,8,2,1,2,0,0,0), +(1060,0,15417,15407,14341,0,0,0,0,0,12,1,1,0,0,0,0), +(1061,8170,15407,14256,2325,14341,0,0,0,20,2,2,4,2,0,0,0), +(1062,8170,15408,15407,14341,0,0,0,0,14,14,1,2,0,0,0,0), +(1063,8170,7078,7076,14341,0,0,0,0,10,1,1,2,0,0,0,0), +(1064,8170,12810,14047,15407,14341,0,0,0,22,4,16,1,2,0,0,0), +(1065,8170,12810,14047,15407,14341,0,0,0,16,4,18,1,2,0,0,0), +(1066,8170,7080,15407,14341,0,0,0,0,12,1,1,2,0,0,0,0), +(1067,8170,15410,15416,14341,0,0,0,0,40,12,60,2,0,0,0,0), +(1068,8170,15416,0,15407,14341,0,0,0,25,25,0,1,2,0,0,0), +(1069,14048,14342,7971,14341,0,0,0,0,6,4,2,1,0,0,0,0), +(1070,8150,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1071,10561,12359,10558,0,0,0,0,0,1,6,3,0,0,0,0,0), +(1072,2842,3470,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1073,3577,3486,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1074,6037,7966,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1075,12360,12644,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1076,15882,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1077,12365,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1078,15994,12359,15992,14047,0,0,0,0,1,3,3,3,0,0,0,0), +(1079,12359,14047,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(1080,10559,10561,15994,12359,10546,0,0,0,2,2,2,4,1,0,0,0), +(1081,12803,15994,10558,8170,0,0,0,0,1,4,1,1,0,0,0,0), +(1082,10502,7910,12810,14047,0,0,0,0,1,4,2,8,0,0,0,0), +(1083,12359,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(1084,16000,11371,10546,12361,12799,8170,0,0,2,6,2,2,2,4,0,0), +(1085,15994,11371,15992,14047,0,0,0,0,2,1,3,3,0,0,0,0), +(1086,12359,15992,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(1087,10561,16000,15994,6037,8170,14047,0,0,1,1,2,1,2,4,0,0), +(1088,12360,14227,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1089,16006,10558,15994,12799,0,0,0,0,2,1,1,1,0,0,0,0), +(1090,10500,12364,12810,0,0,0,0,0,1,2,4,0,0,0,0,0), +(1091,10576,16006,0,0,0,0,0,0,1,4,0,0,0,0,0,0), +(1092,16006,12359,14047,0,0,0,0,0,1,3,1,0,0,0,0,0), +(1093,12360,16000,7078,7076,12800,12810,0,0,10,2,2,2,2,2,0,0), +(1094,16202,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(1095,16202,11176,0,0,0,0,0,0,3,4,0,0,0,0,0,0), +(1096,16204,16203,0,0,0,0,0,0,6,2,0,0,0,0,0,0), +(1097,16204,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(1098,16202,16204,0,0,0,0,0,0,2,3,0,0,0,0,0,0), +(1099,16202,16204,0,0,0,0,0,0,4,4,0,0,0,0,0,0), +(1100,0,7077,7075,7079,7081,7972,0,0,0,1,1,1,1,1,0,0), +(1101,16204,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(1102,16203,16204,0,0,0,0,0,0,1,4,0,0,0,0,0,0), +(1103,11176,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(1104,11176,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(1105,16202,8153,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(1106,16203,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1107,14344,16204,0,0,0,0,0,0,2,6,0,0,0,0,0,0), +(1108,0,14343,0,0,0,0,0,0,0,2,0,0,0,0,0,0), +(1109,16204,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(1110,14343,7080,7082,13467,0,0,0,0,4,1,1,1,0,0,0,0), +(1111,14344,16204,0,0,0,0,0,0,4,10,0,0,0,0,0,0), +(1112,14344,16203,0,0,0,0,0,0,2,4,0,0,0,0,0,0), +(1113,14344,12808,12803,0,0,0,0,0,4,4,4,0,0,0,0,0), +(1114,14344,12808,0,0,0,0,0,0,4,4,0,0,0,0,0,0), +(1115,14344,12811,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(1116,16203,14344,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(1117,16203,14344,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(1118,16202,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1119,16206,0,16204,16203,11145,14344,0,0,1,0,10,4,1,2,0,0), +(1120,12360,12644,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(1121,17034,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1122,16645,16646,16647,16648,0,0,0,0,1,1,1,1,0,0,0,0), +(1123,16649,16650,16651,16652,0,0,0,0,1,1,1,1,0,0,0,0), +(1124,16653,16654,16655,16656,0,0,0,0,1,1,1,1,0,0,0,0), +(1125,17030,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1126,7974,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1127,2318,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1128,2319,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(1129,4234,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(1130,14048,17010,17011,12810,14341,0,0,0,12,4,4,6,2,0,0,0), +(1131,14048,17010,7078,12810,14341,0,0,0,8,6,4,2,2,0,0,0), +(1132,17012,17010,17011,14341,0,0,0,0,20,6,2,2,0,0,0,0), +(1133,17012,17010,17011,14341,0,0,0,0,12,3,3,2,0,0,0,0), +(1134,0,15416,17010,17011,14341,0,0,0,0,18,3,3,2,0,0,0), +(1135,11371,17010,17011,0,0,0,0,0,6,3,3,0,0,0,0,0), +(1136,11371,17010,17011,0,0,0,0,0,16,4,5,0,0,0,0,0), +(1137,11371,17010,17011,0,0,0,0,0,4,2,2,0,0,0,0,0), +(1138,11371,17010,17011,0,0,0,0,0,16,4,6,0,0,0,0,0), +(1139,11371,17010,11382,12810,0,0,0,0,16,12,2,2,0,0,0,0), +(1140,11371,17011,11382,12810,0,0,0,0,18,12,2,2,0,0,0,0), +(1141,8365,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1142,7866,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1143,6889,17194,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1144,6889,1179,17196,17194,0,0,0,0,1,1,1,1,0,0,0,0), +(1145,17193,17204,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1146,17203,11371,12360,7078,11382,17011,17010,0,8,20,50,25,10,10,10,0), +(1147,17202,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1148,17030,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1149,12205,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1150,9282,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1151,9282,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1152,9282,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1153,17202,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1154,3859,3829,7070,7069,4234,0,0,0,10,1,2,2,2,0,0,0), +(1155,3819,3358,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(1156,11135,11137,11139,3819,0,0,0,0,3,3,1,2,0,0,0,0), +(1157,159,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1158,3860,4389,17202,3829,0,0,0,0,8,4,4,1,0,0,0,0), +(1159,4234,7067,4291,0,0,0,0,0,8,4,1,0,0,0,0,0), +(1160,4305,2605,4291,0,0,0,0,0,5,4,1,0,0,0,0,0), +(1161,17761,17762,17763,17764,17765,17757,0,0,1,1,1,1,1,1,0,0), +(1162,17033,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1163,4304,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(1164,12208,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1165,12359,7191,0,0,0,0,0,0,16,2,0,0,0,0,0,0), +(1166,4304,10285,0,4236,0,8343,0,0,6,8,0,4,0,1,0,0), +(1167,17012,14341,0,0,0,0,0,0,3,2,0,0,0,0,0,0), +(1168,10286,13464,13463,3371,0,0,0,0,1,4,4,1,0,0,0,0), +(1169,14344,16203,13926,0,0,0,0,0,4,6,2,0,0,0,0,0), +(1170,14344,16203,7080,0,0,0,0,0,4,4,4,0,0,0,0,0), +(1171,7067,12365,0,0,0,0,0,0,2,3,0,0,0,0,0,0), +(1172,14342,17010,7078,12810,14341,0,0,0,6,8,2,6,4,0,0,0), +(1173,18255,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1174,17011,7076,16006,11371,16000,0,0,0,2,2,4,6,1,0,0,0), +(1175,17010,17011,12360,16006,16000,0,0,0,4,2,6,2,2,0,0,0), +(1176,12360,16006,7082,12803,7076,0,0,0,6,2,8,12,8,0,0,0), +(1177,7972,8831,3371,0,0,0,0,0,1,2,1,0,0,0,0,0), +(1178,14048,8170,18240,14341,0,0,0,0,2,4,1,1,0,0,0,0), +(1179,8170,14048,18240,14341,0,0,0,0,4,2,1,1,0,0,0,0), +(1180,14048,9210,14342,7080,7078,14344,14341,0,16,10,10,12,12,6,6,0), +(1181,14048,14256,12662,12808,14341,0,0,0,12,20,6,8,2,0,0,0), +(1182,14048,7078,7910,14341,0,0,0,0,12,10,2,2,0,0,0,0), +(1183,14048,14342,13926,14341,0,0,0,0,12,6,2,2,0,0,0,0), +(1184,14048,12809,12360,14341,0,0,0,0,12,4,1,2,0,0,0,0), +(1185,14048,14342,13926,14341,0,0,0,0,6,4,2,2,0,0,0,0), +(1186,8170,12804,15407,14341,0,0,0,0,12,12,2,4,0,0,0,0), +(1187,8170,7082,11754,15407,14341,0,0,0,12,6,4,2,4,0,0,0), +(1188,8170,0,0,15407,14341,0,0,0,24,0,0,6,4,0,0,0), +(1189,8170,12607,15416,15414,0,14341,0,0,25,4,12,12,0,2,0,0), +(1190,8170,0,0,8153,15407,14341,0,0,30,0,0,8,2,2,0,0), +(1191,12810,0,14341,0,0,0,0,0,10,0,1,0,0,0,0,0), +(1192,18501,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1194,18582,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1195,18584,18583,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1196,18582,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1197,6714,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1198,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1200,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1201,4377,4234,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1202,4377,4234,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1203,4377,4234,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1204,10505,4338,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(1205,15992,14047,0,0,0,0,0,0,2,3,0,0,0,0,0,0), +(1206,6037,7067,7069,0,0,0,0,0,2,2,1,0,0,0,0,0), +(1207,15994,18631,12361,7078,3829,13467,0,0,6,2,2,4,2,4,0,0), +(1208,15994,18631,7191,14227,7910,0,0,0,2,2,2,2,2,0,0,0), +(1209,16000,18631,14047,0,0,0,0,0,2,1,2,0,0,0,0,0), +(1210,15994,15992,8170,159,0,0,0,0,2,3,2,1,0,0,0,0), +(1211,11371,18631,7080,7910,12800,0,0,0,4,3,6,4,2,0,0,0), +(1212,11371,18631,12803,12808,12800,12799,0,0,8,4,6,4,2,2,0,0), +(1213,12359,0,0,0,7191,0,0,0,4,0,0,0,1,0,0,0), +(1214,10561,15994,10558,10560,3864,0,0,0,1,2,1,1,1,0,0,0), +(1215,18659,18646,18665,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1216,4234,2321,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(1217,18707,18724,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1218,18713,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1219,18715,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1220,18779,18780,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1221,18781,18782,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1222,18783,18784,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1223,4234,4236,5498,4461,5637,0,0,0,8,2,4,1,4,0,0,0), +(1224,3860,18631,7077,7910,10586,0,0,0,10,1,4,2,1,0,0,0), +(1225,3860,18631,7075,7079,7909,9060,0,0,12,2,4,2,4,1,0,0), +(1226,15992,14047,8150,0,0,0,0,0,2,2,1,0,0,0,0,0), +(1227,12359,7076,12803,0,0,0,0,0,12,3,3,0,0,0,0,0), +(1228,12360,7076,12803,0,0,0,0,0,4,6,6,0,0,0,0,0), +(1229,12359,6037,12811,0,0,0,0,0,8,6,1,0,0,0,0,0), +(1230,12360,6037,12811,0,0,0,0,0,2,10,1,0,0,0,0,0), +(1231,17011,17010,11371,0,0,0,0,0,4,2,4,0,0,0,0,0), +(1232,17011,17010,17012,11371,11382,0,0,0,3,5,4,4,2,0,0,0), +(1233,17011,17010,12360,11382,11371,0,0,0,3,6,12,1,4,0,0,0), +(1234,17011,17010,12360,11371,0,0,0,0,5,2,16,6,0,0,0,0), +(1235,17011,17010,12360,11371,12800,0,0,0,4,7,12,8,4,0,0,0), +(1236,17011,17010,12360,11371,12809,0,0,0,6,6,10,6,12,0,0,0), +(1237,17011,17010,12360,11371,12364,0,0,0,8,5,10,12,4,0,0,0), +(1238,14048,7076,12803,14227,0,0,0,0,8,3,3,2,0,0,0,0), +(1239,14342,7076,12803,14227,0,0,0,0,5,5,5,2,0,0,0,0), +(1240,14048,12810,13926,12809,14227,0,0,0,6,4,2,2,2,0,0,0), +(1241,14342,12809,14227,0,0,0,0,0,5,2,2,0,0,0,0,0), +(1242,14342,17010,17011,7078,14227,0,0,0,10,2,3,6,4,0,0,0), +(1243,14342,17010,17011,7078,14227,0,0,0,8,5,3,10,4,0,0,0), +(1244,0,19230,19231,19232,19233,19234,19235,19236,0,1,1,1,1,1,1,1), +(1245,0,19259,19260,19261,19262,19263,19264,19265,0,1,1,1,1,1,1,1), +(1246,0,19269,19270,19271,19272,19273,19274,19275,0,1,1,1,1,1,1,1), +(1247,0,19278,19279,19280,19281,19282,19283,19284,0,1,1,1,1,1,1,1), +(1248,17030,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1249,8170,0,12803,15407,14341,0,0,0,30,0,4,2,2,0,0,0), +(1250,12810,12804,12803,15407,14227,0,0,0,8,6,6,2,2,0,0,0), +(1251,8170,12809,7080,15407,14341,0,0,0,30,2,4,2,2,0,0,0), +(1252,12810,12803,12809,15407,14341,0,0,0,8,4,4,2,2,0,0,0), +(1253,17011,17012,14227,0,0,0,0,0,2,2,4,0,0,0,0,0), +(1254,17010,17011,17012,0,0,14227,0,0,3,2,8,0,0,4,0,0), +(1255,17010,17012,8170,0,14227,0,0,0,4,12,12,0,4,0,0,0), +(1256,17010,17011,17012,0,14227,0,0,0,2,2,2,0,4,0,0,0), +(1257,19441,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1258,14344,7076,0,0,0,0,0,0,4,4,0,0,0,0,0,0), +(1259,14344,7082,0,0,0,0,0,0,4,4,0,0,0,0,0,0), +(1260,16204,16202,7080,0,0,0,0,0,4,4,2,0,0,0,0,0), +(1261,14344,16204,16202,0,0,0,0,0,2,4,4,0,0,0,0,0), +(1262,14344,16203,16204,0,0,0,0,0,6,4,12,0,0,0,0,0), +(1263,14344,16203,16204,0,0,0,0,0,6,5,20,0,0,0,0,0), +(1264,14342,0,12804,0,14227,0,0,0,3,0,3,0,2,0,0,0), +(1265,14342,0,12804,0,14227,0,0,0,4,0,4,0,2,0,0,0), +(1266,14342,0,0,0,14227,0,0,0,4,0,0,0,2,0,0,0), +(1267,19767,15407,12803,14341,0,0,0,0,14,5,4,4,0,0,0,0), +(1268,19767,15407,12803,14341,0,0,0,0,10,4,4,3,0,0,0,0), +(1269,19767,15407,12803,14341,0,0,0,0,8,3,4,3,0,0,0,0), +(1270,19768,0,15407,14341,0,0,0,0,25,0,3,3,0,0,0,0), +(1271,19768,0,15407,14341,0,0,0,0,25,0,3,3,0,0,0,0), +(1272,12359,0,0,7910,0,0,0,0,20,0,0,2,0,0,0,0), +(1273,12359,0,0,7910,0,0,0,0,16,0,0,1,0,0,0,0), +(1274,12359,0,0,12810,0,0,0,0,12,0,0,4,0,0,0,0), +(1275,12359,0,12799,0,0,0,0,0,20,0,2,0,0,0,0,0), +(1276,12359,0,12799,0,0,0,0,0,18,0,2,0,0,0,0,0), +(1277,12359,0,12799,0,0,0,0,0,16,0,2,0,0,0,0,0), +(1278,19881,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(1279,3826,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1280,12938,19943,12804,13468,0,0,0,0,1,1,6,1,0,0,0,0), +(1281,19939,19940,19941,19942,0,0,0,0,1,1,1,1,0,0,0,0), +(1282,19939,19940,19941,19942,0,0,0,0,1,1,1,1,0,0,0,0), +(1283,19939,19940,19941,19942,0,0,0,0,1,1,1,1,0,0,0,0), +(1284,19939,19940,19941,19942,0,0,0,0,1,1,1,1,0,0,0,0), +(1285,19939,19940,19941,19942,0,0,0,0,1,1,1,1,0,0,0,0), +(1286,19939,19940,19941,19942,0,0,0,0,1,1,1,1,0,0,0,0), +(1287,19939,19940,19941,19942,0,0,0,0,1,1,1,1,0,0,0,0), +(1288,19939,19940,19941,19942,0,0,0,0,1,1,1,1,0,0,0,0), +(1289,19939,19940,19941,19942,0,0,0,0,1,1,1,1,0,0,0,0), +(1290,19975,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(1291,0,7910,0,12804,12810,0,0,0,0,2,0,6,6,0,0,0), +(1292,12655,12800,0,12804,0,0,0,0,4,1,0,6,0,0,0,0), +(1293,13463,13466,3371,0,0,0,0,0,1,2,1,0,0,0,0,0), +(1294,13463,13464,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(1295,13467,13465,0,3371,0,0,0,0,2,1,0,1,0,0,0,0), +(1296,8846,13466,3371,0,0,0,0,0,1,2,1,0,0,0,0,0), +(1297,17011,17010,17012,11371,0,0,0,0,3,3,4,6,0,0,0,0), +(1298,3667,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1299,8170,15415,15407,14341,0,0,0,0,28,36,2,2,0,0,0,0), +(1300,8170,15412,15407,14341,0,0,0,0,20,30,1,2,0,0,0,0), +(1301,5565,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1302,8170,20381,12803,14341,0,0,0,0,20,3,3,2,0,0,0,0), +(1303,20406,20408,20407,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1304,20406,20408,20407,20416,0,0,0,0,1,1,1,1,0,0,0,0), +(1305,20406,20408,20407,20418,0,0,0,0,1,1,1,1,0,0,0,0), +(1306,20406,20408,20407,20419,0,0,0,0,1,1,1,1,0,0,0,0), +(1307,20406,20408,20407,20420,0,0,0,0,1,1,1,1,0,0,0,0), +(1308,20406,20408,20407,20422,0,0,0,0,1,1,1,1,0,0,0,0), +(1309,20406,20408,20407,20422,20432,0,0,0,1,1,1,1,1,0,0,0), +(1310,20406,20408,20407,20422,20433,0,0,0,1,1,1,1,1,0,0,0), +(1311,20406,20408,20407,20422,20435,0,0,0,1,1,1,1,1,0,0,0), +(1312,20406,20408,20407,20422,20436,0,0,0,1,1,1,1,1,0,0,0), +(1313,20406,20408,20407,20422,20451,0,0,0,1,1,1,1,1,0,0,0), +(1314,20406,20408,20407,20422,20451,20447,0,0,1,1,1,1,1,1,0,0), +(1315,20406,20408,20407,20422,20451,20448,0,0,1,1,1,1,1,1,0,0), +(1316,20406,20408,20407,20422,20451,20449,0,0,1,1,1,1,1,1,0,0), +(1317,20406,20408,20407,20422,20451,20450,0,0,1,1,1,1,1,1,0,0), +(1318,20424,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1319,15407,8170,7078,0,0,0,0,0,1,20,2,0,0,0,0,0), +(1320,0,8170,7078,15407,0,0,0,0,0,30,2,1,0,0,0,0), +(1321,0,8170,7078,15407,0,0,0,0,0,40,2,3,0,0,0,0), +(1322,8170,15407,0,0,0,0,0,0,20,4,0,0,0,0,0,0), +(1323,8170,0,0,15407,0,0,0,0,35,0,0,4,0,0,0,0), +(1324,8170,0,0,15407,0,0,0,0,40,0,0,4,0,0,0,0), +(1325,8170,4625,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1326,8170,7069,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1327,8170,12365,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1328,8170,4791,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1329,20520,4625,0,0,0,0,0,0,1,5,0,0,0,0,0,0), +(1330,20520,7069,0,0,0,0,0,0,1,5,0,0,0,0,0,0), +(1331,20520,12365,0,0,0,0,0,0,1,5,0,0,0,0,0,0), +(1332,20520,4791,0,0,0,0,0,0,1,5,0,0,0,0,0,0), +(1333,11144,4625,0,0,0,0,0,0,1,20,0,0,0,0,0,0), +(1334,11144,7069,0,0,0,0,0,0,1,20,0,0,0,0,0,0), +(1335,11144,12365,0,0,0,0,0,0,1,20,0,0,0,0,0,0), +(1336,11144,4791,0,0,0,0,0,0,1,20,0,0,0,0,0,0), +(1337,14048,20520,14256,14227,0,0,0,0,6,8,6,2,0,0,0,0), +(1338,14048,20520,14256,12810,14227,0,0,0,2,6,2,2,2,0,0,0), +(1339,14048,20520,14256,12810,14227,0,0,0,4,6,4,2,2,0,0,0), +(1340,12359,20520,6037,12810,0,0,0,0,12,6,6,2,0,0,0,0), +(1341,12359,20520,6037,11754,0,0,0,0,16,8,8,1,0,0,0,0), +(1342,12359,20520,6037,0,0,0,0,0,20,10,10,0,0,0,0,0), +(1343,2319,7286,4231,2321,0,0,0,0,8,8,1,2,0,0,0,0), +(1344,20606,20608,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1345,22448,22446,21886,0,0,0,0,0,4,2,8,0,0,0,0,0), +(1346,22448,14344,12808,0,0,0,0,0,3,10,6,0,0,0,0,0), +(1347,22448,14344,7080,0,0,0,0,0,3,10,4,0,0,0,0,0), +(1348,22448,14344,7078,0,0,0,0,0,2,10,4,0,0,0,0,0), +(1349,22448,14344,12811,0,0,0,0,0,3,8,1,0,0,0,0,0), +(1350,22448,22446,22451,0,0,0,0,0,3,3,2,0,0,0,0,0), +(1351,22448,22446,7078,0,0,0,0,0,3,3,4,0,0,0,0,0), +(1352,22448,22446,12803,0,0,0,0,0,2,3,4,0,0,0,0,0), +(1353,22448,22446,22794,0,0,0,0,0,3,3,2,0,0,0,0,0), +(1354,22448,22446,22456,0,0,0,0,0,4,2,8,0,0,0,0,0), +(1355,22448,22446,22452,0,0,0,0,0,3,3,8,0,0,0,0,0), +(1356,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1357,10940,0,3371,0,0,0,0,0,2,0,1,0,0,0,0,0), +(1358,11083,0,3371,0,0,0,0,0,3,0,1,0,0,0,0,0), +(1359,11137,0,3371,0,0,0,0,0,3,0,1,0,0,0,0,0), +(1360,11176,8831,3371,0,0,0,0,0,3,2,1,0,0,0,0,0), +(1361,16204,4625,3371,0,0,0,0,0,3,2,1,0,0,0,0,0), +(1362,14344,4625,3371,0,0,0,0,0,2,3,1,0,0,0,0,0), +(1363,14344,8831,3371,0,0,0,0,0,2,3,1,0,0,0,0,0), +(1364,7077,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1365,2840,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1366,2841,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1367,2842,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1368,774,2840,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(1369,5498,20817,2840,0,0,0,0,0,1,1,2,0,0,0,0,0), +(1370,1210,20817,20816,0,0,0,0,0,2,1,2,0,0,0,0,0), +(1371,2842,20817,1206,1705,0,0,0,0,2,1,1,1,0,0,0,0), +(1372,2842,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1373,1210,2841,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(1374,3577,1206,3391,0,0,0,0,0,1,2,1,0,0,0,0,0), +(1375,1705,5498,11083,2842,3827,0,0,0,3,3,4,4,2,0,0,0), +(1376,1705,3824,3575,0,0,0,0,0,1,1,4,0,0,0,0,0), +(1377,1705,20817,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(1378,2841,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1379,20816,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1380,3575,5637,20817,0,0,0,0,0,8,2,2,0,0,0,0,0), +(1381,1206,20817,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1382,3575,3391,0,0,0,0,0,0,8,2,0,0,0,0,0,0), +(1383,1529,3577,20816,0,0,0,0,0,1,2,2,0,0,0,0,0), +(1384,1206,1529,2842,20817,0,0,0,0,1,1,2,2,0,0,0,0), +(1385,3860,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1386,3864,20963,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1387,1529,20963,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(1388,1529,7067,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(1389,6037,20963,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(1390,3864,0,3860,0,0,0,0,0,1,0,2,0,0,0,0,0), +(1391,3864,7070,3577,20817,0,0,0,0,1,2,2,1,0,0,0,0), +(1392,0,9061,8150,21024,0,0,0,0,0,1,1,1,0,0,0,0), +(1393,21040,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1394,21071,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1395,21103,21104,21105,21106,21107,21108,21109,21110,1,1,1,1,1,1,1,1), +(1396,21171,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1397,21153,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1398,15407,15994,7079,18631,10558,0,0,0,1,4,2,2,1,0,0,0), +(1400,14048,8170,7972,14341,0,0,0,0,6,4,2,1,0,0,0,0), +(1401,14256,12810,20520,14227,0,0,0,0,12,6,2,4,0,0,0,0), +(1402,14256,17012,0,7078,14227,0,0,0,20,16,0,4,4,0,0,0), +(1403,7912,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1404,6371,4625,3371,0,0,0,0,0,3,3,1,0,0,0,0,0), +(1405,12810,0,7082,0,14227,0,0,0,6,0,4,0,2,0,0,0), +(1406,14048,4625,2604,14341,0,0,0,0,4,2,2,1,0,0,0,0), +(1407,14048,4625,2604,14341,0,0,0,0,4,2,2,1,0,0,0,0), +(1408,4364,2319,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1409,4364,2319,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1410,4364,2319,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1411,4377,4234,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1412,4377,4234,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1413,4377,4234,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1414,10505,4304,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1415,10505,4304,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1416,10505,4304,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1417,15992,8170,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1418,15992,8170,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1419,15992,8170,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1420,9060,9061,10560,10561,0,0,0,0,1,1,1,1,0,0,0,0), +(1421,10561,9061,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1425,21877,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(1426,21840,14341,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(1427,21840,22445,0,0,0,0,0,0,3,2,0,0,0,0,0,0), +(1428,21842,21881,22446,0,0,0,0,0,4,2,1,0,0,0,0,0), +(1429,21840,21882,0,0,0,0,0,0,1,8,0,0,0,0,0,0), +(1430,21842,21886,21885,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1431,24271,21884,21881,0,0,0,0,0,4,10,2,0,0,0,0,0), +(1432,24271,21884,21881,0,0,0,0,0,8,12,4,0,0,0,0,0), +(1433,24271,21884,21881,0,0,0,0,0,14,16,4,0,0,0,0,0), +(1434,24271,22446,21881,0,0,0,0,0,6,4,4,0,0,0,0,0), +(1435,24272,21885,21881,0,0,0,0,0,4,10,2,0,0,0,0,0), +(1436,24272,21885,21881,0,0,0,0,0,8,12,2,0,0,0,0,0), +(1437,24272,21885,21881,0,0,0,0,0,14,16,4,0,0,0,0,0), +(1438,24272,21881,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(1439,21845,21881,21886,0,0,0,0,0,4,2,8,0,0,0,0,0), +(1440,21845,21881,21886,0,0,0,0,0,8,2,8,0,0,0,0,0), +(1441,21845,22457,21881,0,0,0,0,0,14,12,4,0,0,0,0,0), +(1442,21845,21881,0,0,0,0,0,0,8,4,0,0,0,0,0,0), +(1443,21840,14341,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(1444,21840,14341,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(1445,21840,21887,14341,0,0,0,0,0,4,2,1,0,0,0,0,0), +(1446,21840,14341,0,0,0,0,0,0,6,1,0,0,0,0,0,0), +(1447,21840,21887,14341,0,0,0,0,0,6,2,1,0,0,0,0,0), +(1448,21840,14341,0,0,0,0,0,0,8,2,0,0,0,0,0,0), +(1449,21840,14341,0,0,0,0,0,0,8,2,0,0,0,0,0,0), +(1450,21842,21881,14341,0,0,0,0,0,5,2,1,0,0,0,0,0), +(1451,21842,21887,21881,14341,0,0,0,0,4,6,2,1,0,0,0,0), +(1452,21842,21881,14341,0,0,0,0,0,6,2,1,0,0,0,0,0), +(1453,21842,21881,14341,0,0,0,0,0,6,2,1,0,0,0,0,0), +(1454,21844,21887,14341,0,0,0,0,0,5,6,4,0,0,0,0,0), +(1455,21844,14341,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(1456,21844,14341,0,0,0,0,0,0,8,4,0,0,0,0,0,0), +(1457,21840,22445,14341,0,0,0,0,0,6,12,2,0,0,0,0,0), +(1458,21840,22445,14341,0,0,0,0,0,8,16,2,0,0,0,0,0), +(1459,21840,22445,14341,0,0,0,0,0,12,20,2,0,0,0,0,0), +(1460,1529,6037,11137,20963,0,0,0,0,4,2,4,4,0,0,0,0), +(1461,3577,3864,0,0,0,0,0,0,6,2,0,0,0,0,0,0), +(1462,7909,52188,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(1463,7971,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1464,7909,20963,0,0,0,0,0,0,1,3,0,0,0,0,0,0), +(1465,7910,7971,6037,21752,6149,0,0,0,2,2,4,4,4,0,0,0), +(1466,12359,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1467,7909,6037,7075,7079,0,0,0,0,2,4,2,2,0,0,0,0), +(1468,7910,6037,7077,7081,0,0,0,0,2,4,2,2,0,0,0,0), +(1469,7910,21752,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1470,6037,10286,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(1471,7909,21752,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1472,7909,3864,21752,6037,0,0,0,0,2,2,4,2,0,0,0,0), +(1473,12799,21752,6037,11178,20963,0,0,0,2,2,4,2,2,0,0,0), +(1474,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1475,7910,7078,0,6037,0,0,0,0,2,2,0,2,0,0,0,0), +(1476,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1477,12799,21752,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1478,12361,6037,21752,0,0,0,0,0,4,2,1,0,0,0,0,0), +(1479,12364,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1480,12800,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1481,12364,12799,12361,12360,12359,0,0,0,2,2,2,2,2,0,0,0), +(1482,21752,12804,7076,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1483,12361,12808,0,21752,0,0,0,0,1,1,0,1,0,0,0,0), +(1484,12364,12360,12359,12804,0,0,0,0,2,2,2,4,0,0,0,0), +(1485,12363,12808,12662,0,0,0,0,0,1,2,1,0,0,0,0,0), +(1486,12364,12803,12804,0,0,0,0,0,2,4,4,0,0,0,0,0), +(1487,18335,11754,12800,12360,12359,0,0,0,4,4,2,2,4,0,0,0), +(1488,11371,12360,7910,0,0,0,0,0,4,2,2,0,0,0,0,0), +(1489,12800,21752,12360,0,0,0,0,0,2,2,2,0,0,0,0,0), +(1490,21929,7078,12803,0,0,0,0,0,1,4,4,0,0,0,0,0), +(1491,12360,7076,7082,0,0,0,0,0,4,4,4,0,0,0,0,0), +(1492,12359,11382,7910,12938,0,0,0,0,8,2,4,2,0,0,0,0), +(1493,20816,2840,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(1494,2840,20816,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(1495,2841,1210,20816,0,0,0,0,0,2,1,1,0,0,0,0,0), +(1496,818,2840,20816,0,0,0,0,0,2,2,1,0,0,0,0,0), +(1497,21877,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1498,21877,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1499,18335,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1500,18335,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1501,18335,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1502,22047,22046,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1503,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1504,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1505,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1506,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1507,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1508,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1509,9061,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1510,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1511,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1512,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1513,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1514,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1515,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1516,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1517,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1518,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1519,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1520,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1521,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1522,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1523,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1524,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1525,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1526,21815,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1527,22202,12655,7076,0,0,0,0,0,14,4,2,0,0,0,0,0), +(1528,22203,22202,12655,7076,0,0,0,0,8,24,8,4,0,0,0,0), +(1529,22203,22202,12655,7076,12364,0,0,0,18,40,12,10,4,0,0,0), +(1530,22202,12810,0,0,0,0,0,0,14,4,0,0,0,0,0,0), +(1531,22203,22202,12810,13512,0,0,0,0,8,24,8,1,0,0,0,0), +(1532,22203,22202,12810,12809,12800,0,0,0,15,36,12,10,4,0,0,0), +(1533,4339,11137,8343,0,0,0,0,0,4,4,2,0,0,0,0,0), +(1534,14048,16203,14341,0,0,0,0,0,5,2,2,0,0,0,0,0), +(1535,14048,14344,12810,14227,0,0,0,0,6,4,4,4,0,0,0,0), +(1536,22284,22283,22285,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1537,22288,22286,22287,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1538,22291,22290,22289,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1539,22133,22132,22131,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1540,22136,22135,22134,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1541,22292,22294,22293,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1542,22296,22295,22297,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1543,22298,22299,22300,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1544,22176,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1545,22143,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1546,22117,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1547,22141,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1548,22119,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1549,22173,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1550,21960,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1551,22140,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1552,22120,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1553,22142,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1554,22175,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1555,22123,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1556,22177,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1557,22144,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1558,22122,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1559,22174,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1560,22145,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1561,22121,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1562,14048,8831,0,14341,0,0,0,0,5,10,0,2,0,0,0,0), +(1563,14048,14342,13468,14227,0,0,0,0,6,2,1,4,0,0,0,0), +(1564,22047,21984,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1565,21984,22046,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1566,17030,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1567,9282,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1568,9282,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1569,9282,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1570,9282,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1571,12360,12655,7076,13510,0,0,0,0,12,20,10,2,0,0,0,0), +(1572,12360,11371,12808,20520,15417,0,0,0,15,10,20,20,10,0,0,0), +(1573,12360,20725,13512,12810,0,0,0,0,12,2,2,4,0,0,0,0), +(1574,14344,7082,0,0,0,0,0,0,8,4,0,0,0,0,0,0), +(1575,22445,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(1576,22445,22447,0,0,0,0,0,0,6,6,0,0,0,0,0,0), +(1577,22448,22445,0,0,0,0,0,0,2,10,0,0,0,0,0,0), +(1578,9282,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1579,9282,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1580,22446,21886,0,0,0,0,0,0,4,4,0,0,0,0,0,0), +(1581,22446,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(1582,22449,22446,22445,0,0,0,0,0,1,10,20,0,0,0,0,0), +(1583,22449,21884,21885,0,0,0,0,0,6,6,6,0,0,0,0,0), +(1584,22449,22445,0,0,0,0,0,0,2,6,0,0,0,0,0,0), +(1585,22449,22446,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(1586,22449,22446,22445,0,0,0,0,0,2,3,5,0,0,0,0,0), +(1587,22450,22449,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(1588,22445,22452,0,0,0,0,0,0,6,10,0,0,0,0,0,0), +(1589,22446,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1590,22445,22446,22452,0,0,0,0,0,12,4,10,0,0,0,0,0), +(1591,22449,22573,22574,22572,22578,0,0,0,2,1,1,1,1,0,0,0), +(1592,22445,13446,13444,0,0,0,0,0,6,4,4,0,0,0,0,0), +(1593,22445,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(1594,22446,22445,0,0,0,0,0,0,8,8,0,0,0,0,0,0), +(1595,22450,22449,0,0,0,0,0,0,2,4,0,0,0,0,0,0), +(1596,22445,13446,14344,0,0,0,0,0,8,4,2,0,0,0,0,0), +(1597,34054,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(1598,22449,22445,22446,0,0,0,0,0,4,4,4,0,0,0,0,0), +(1599,22445,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(1600,22446,21884,22451,22452,21885,0,0,0,4,4,4,4,4,0,0,0), +(1601,14344,12808,12803,0,0,0,0,0,6,6,6,0,0,0,0,0), +(1602,22449,22446,22445,0,0,0,0,0,2,6,6,0,0,0,0,0), +(1603,22449,22446,0,0,0,0,0,0,2,10,0,0,0,0,0,0), +(1604,22449,22445,0,0,0,0,0,0,4,40,0,0,0,0,0,0), +(1605,22449,22446,22445,0,0,0,0,0,4,5,20,0,0,0,0,0), +(1606,22449,22446,0,0,0,0,0,0,8,8,0,0,0,0,0,0), +(1607,22449,22446,22445,0,0,0,0,0,8,6,20,0,0,0,0,0), +(1608,22450,22449,22446,21884,23571,0,0,0,12,10,8,6,1,0,0,0), +(1609,22450,22449,22446,21885,22456,0,0,0,12,10,8,6,6,0,0,0), +(1610,22450,22449,22446,22445,0,0,0,0,6,10,8,40,0,0,0,0), +(1611,17056,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1612,17056,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1613,22449,22446,22445,0,0,0,0,0,12,10,20,0,0,0,0,0), +(1614,22450,22449,21885,0,0,0,0,0,8,8,2,0,0,0,0,0), +(1615,22445,22791,3371,0,0,0,0,0,3,1,1,0,0,0,0,0), +(1616,22445,22792,3371,0,0,0,0,0,3,1,1,0,0,0,0,0), +(1617,12363,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1618,22448,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(1619,22449,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1620,22450,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1621,22484,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(1622,22572,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0), +(1623,22573,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0), +(1624,22574,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0), +(1625,22578,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0), +(1626,22577,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0), +(1627,22576,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0), +(1628,22575,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0), +(1629,9282,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1630,22682,14048,7080,14227,0,0,0,0,5,4,4,4,0,0,0,0), +(1631,22682,14048,7080,14227,0,0,0,0,7,8,6,8,0,0,0,0), +(1632,22682,14048,7080,14227,0,0,0,0,5,4,2,4,0,0,0,0), +(1633,22682,14048,7080,14227,0,0,0,0,4,2,2,4,0,0,0,0), +(1634,0,14048,12803,14227,0,0,0,0,0,3,5,4,0,0,0,0), +(1635,22682,12810,7080,15407,14227,0,0,0,7,16,2,4,4,0,0,0), +(1636,22682,12810,7080,15407,14227,0,0,0,5,12,2,3,4,0,0,0), +(1637,22682,12810,7080,15407,14227,0,0,0,4,12,2,2,4,0,0,0), +(1638,22682,15408,7080,15407,14227,0,0,0,7,24,2,4,4,0,0,0), +(1639,22682,15408,7080,15407,14227,0,0,0,5,16,2,3,4,0,0,0), +(1640,22682,15408,7080,15407,14227,0,0,0,4,16,2,2,4,0,0,0), +(1641,22682,12359,12360,7080,0,0,0,0,7,16,2,4,0,0,0,0), +(1642,22682,12359,12360,7080,0,0,0,0,5,12,2,2,0,0,0,0), +(1643,22682,12359,12360,7080,0,0,0,0,4,12,2,2,0,0,0,0), +(1644,22484,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1645,22644,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1646,22726,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0), +(1647,3860,10558,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(1648,9282,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1649,12655,0,12360,12803,0,0,0,0,6,0,2,2,0,0,0,0), +(1650,12655,0,12803,0,0,0,0,0,8,0,2,0,0,0,0,0), +(1651,12655,12803,0,0,0,0,0,0,6,2,0,0,0,0,0,0), +(1652,8170,0,12803,15407,0,0,0,0,12,0,2,2,0,0,0,0), +(1653,12810,0,12803,15407,0,0,0,0,6,0,3,2,0,0,0,0), +(1654,12810,12803,15407,0,0,0,0,0,4,2,1,0,0,0,0,0), +(1655,14048,0,12803,14227,0,0,0,0,4,0,2,2,0,0,0,0), +(1656,14048,14342,12803,14227,0,0,0,0,4,2,2,2,0,0,0,0), +(1657,14048,12803,14227,0,0,0,0,0,2,4,2,0,0,0,0,0), +(1658,22787,22785,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1659,13465,22785,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1660,13464,22786,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1661,22787,22785,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(1662,22578,22790,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(1663,22789,3371,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(1664,22791,22785,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(1665,22787,22789,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(1666,22789,22785,3371,0,0,0,0,0,1,2,1,0,0,0,0,0), +(1667,22787,22791,3371,0,0,0,0,0,3,1,1,0,0,0,0,0), +(1668,22786,22785,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(1669,22574,22790,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(1670,22790,22789,3371,0,0,0,0,0,3,1,1,0,0,0,0,0), +(1671,22790,22792,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1672,22786,22792,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1673,22789,22790,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(1674,22789,22791,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(1675,22792,22791,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(1676,22451,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1677,22452,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1678,21884,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1679,21885,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1680,22790,22791,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1681,21884,22793,3371,0,0,0,0,0,1,3,5,0,0,0,0,0), +(1682,21885,22793,3371,0,0,0,0,0,1,3,5,0,0,0,0,0), +(1683,21886,22793,3371,0,0,0,0,0,1,3,5,0,0,0,0,0), +(1684,22457,22793,3371,0,0,0,0,0,1,3,5,0,0,0,0,0), +(1685,22456,22793,3371,0,0,0,0,0,1,3,5,0,0,0,0,0), +(1686,21886,22793,3371,0,0,0,0,0,1,3,5,0,0,0,0,0), +(1687,22791,22793,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1688,22790,22573,3371,0,0,0,0,0,2,3,1,0,0,0,0,0), +(1689,22456,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1690,21885,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1691,22457,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1692,21884,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1693,21886,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1694,22452,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1695,22793,22786,22791,3371,0,0,0,0,2,1,1,1,0,0,0,0), +(1696,22794,22793,22790,3371,0,0,0,0,1,3,7,1,0,0,0,0), +(1697,22794,22793,22786,3371,0,0,0,0,1,3,7,1,0,0,0,0), +(1698,22794,22793,22789,3371,0,0,0,0,1,3,7,1,0,0,0,0), +(1699,22794,22793,22791,3371,0,0,0,0,1,3,7,1,0,0,0,0), +(1700,22794,22793,22792,3371,0,0,0,0,1,3,7,1,0,0,0,0), +(1701,23077,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1702,23077,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1703,23077,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1704,23077,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1705,21929,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1706,21929,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1707,23107,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1708,21929,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1709,23079,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1710,23079,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1711,23079,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1712,23107,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1713,23107,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1714,23107,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1715,23107,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1716,23107,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1717,23077,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1718,23112,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1719,23112,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1720,23117,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1721,23117,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1722,23117,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1723,23117,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1724,23117,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1725,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1726,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1727,23270,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1728,23270,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1729,23270,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1730,23424,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1731,23425,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1732,23427,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1733,23445,23447,0,0,0,0,0,0,3,2,0,0,0,0,0,0), +(1734,23426,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1736,23445,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1737,23445,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1738,23445,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(1739,23445,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(1740,23445,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(1741,23445,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1742,23445,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(1743,23445,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(1744,23445,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0), +(1745,23445,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0), +(1746,23445,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(1747,23445,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(1748,23446,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(1749,23446,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(1750,23446,21887,0,0,0,0,0,0,7,2,0,0,0,0,0,0), +(1751,23446,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(1752,23446,22452,21884,0,0,0,0,0,6,2,2,0,0,0,0,0), +(1753,23446,21887,22452,21884,0,0,0,0,8,2,3,2,0,0,0,0), +(1754,23446,22452,21884,0,0,0,0,0,12,4,2,0,0,0,0,0), +(1755,23573,22445,22449,0,0,0,0,0,2,8,2,0,0,0,0,0), +(1756,23573,22445,22449,0,0,0,0,0,4,20,4,0,0,0,0,0), +(1757,23573,22445,22449,0,0,0,0,0,3,12,2,0,0,0,0,0), +(1758,23573,22445,22449,0,0,0,0,0,4,24,4,0,0,0,0,0), +(1759,23445,21885,21884,0,0,0,0,0,6,3,2,0,0,0,0,0), +(1760,23445,21885,21884,0,0,0,0,0,12,5,3,0,0,0,0,0), +(1761,23445,21885,21884,0,0,0,0,0,8,4,4,0,0,0,0,0), +(1762,23445,21885,21884,0,0,0,0,0,16,6,4,0,0,0,0,0), +(1763,23448,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(1764,23448,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(1765,23448,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(1766,23573,23571,22452,23572,0,0,0,0,10,2,15,1,0,0,0,0), +(1767,23449,21885,22457,0,0,0,0,0,3,2,2,0,0,0,0,0), +(1768,23449,21885,22457,0,0,0,0,0,6,4,4,0,0,0,0,0), +(1769,23449,21885,22457,0,0,0,0,0,4,3,3,0,0,0,0,0), +(1770,23445,21884,23449,22824,0,0,0,0,8,6,3,2,0,0,0,0), +(1771,23445,21884,23449,22824,0,0,0,0,10,10,4,4,0,0,0,0), +(1772,23445,21884,23449,22824,0,0,0,0,12,10,6,4,0,0,0,0), +(1773,23448,22449,22831,22451,0,0,0,0,6,2,4,4,0,0,0,0), +(1774,23573,21886,22452,0,0,0,0,0,4,6,4,0,0,0,0,0), +(1775,23445,22573,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1776,23446,22573,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(1777,23448,21884,22452,0,0,0,0,0,4,4,4,0,0,0,0,0), +(1778,23448,23571,23572,0,0,0,0,0,10,3,1,0,0,0,0,0), +(1779,23448,23571,23572,0,0,0,0,0,10,5,1,0,0,0,0,0), +(1780,23573,22451,21885,23572,0,0,0,0,8,16,16,1,0,0,0,0), +(1781,23573,22452,22457,23572,0,0,0,0,8,22,12,1,0,0,0,0), +(1782,23573,23571,21886,23572,0,0,0,0,8,3,18,1,0,0,0,0), +(1783,23448,22456,23572,0,0,0,0,0,6,15,1,0,0,0,0,0), +(1784,23573,21886,23572,0,0,0,0,0,6,20,1,0,0,0,0,0), +(1785,23573,23571,21885,23572,0,0,0,0,6,2,15,1,0,0,0,0), +(1786,23446,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(1787,22452,21885,22451,21884,22457,0,0,0,1,1,1,1,1,0,0,0), +(1788,23449,23448,23571,23572,0,0,0,0,10,10,6,2,0,0,0,0), +(1789,23449,23573,23571,23572,0,0,0,0,20,2,6,2,0,0,0,0), +(1790,23449,23448,23571,23572,0,0,0,0,10,10,8,2,0,0,0,0), +(1791,23449,23448,23571,23572,0,0,0,0,10,10,8,2,0,0,0,0), +(1792,23449,23448,23571,23572,0,0,0,0,10,10,8,2,0,0,0,0), +(1793,23449,23448,23571,23572,0,0,0,0,10,10,8,2,0,0,0,0), +(1794,23449,23573,23447,23571,23572,0,0,0,10,4,10,8,2,0,0,0), +(1795,23449,23448,23571,23572,0,0,0,0,10,10,8,2,0,0,0,0), +(1796,23449,23573,23447,23571,23572,0,0,0,10,4,10,8,4,0,0,0), +(1797,23446,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1798,23447,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1799,22574,22573,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(1800,23445,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(1801,23445,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1802,23446,22452,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(1803,23573,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(1804,23449,21884,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1805,23448,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1806,23782,23783,23781,0,0,0,0,0,1,2,1,0,0,0,0,0), +(1807,23446,23783,23781,0,0,0,0,0,4,2,1,0,0,0,0,0), +(1808,4400,23782,23783,0,0,0,0,0,1,3,6,0,0,0,0,0), +(1809,23782,23784,23783,0,0,0,0,0,3,2,4,0,0,0,0,0), +(1810,23785,23787,23783,0,0,0,0,0,1,4,4,0,0,0,0,0), +(1811,23785,23449,23783,23439,0,0,0,0,2,12,4,2,0,0,0,0), +(1812,23793,23077,22445,0,0,0,0,0,4,2,8,0,0,0,0,0), +(1813,23793,21929,22445,0,0,0,0,0,4,2,8,0,0,0,0,0), +(1814,23793,23449,23079,22448,0,0,0,0,4,2,2,2,0,0,0,0), +(1815,23793,23449,23441,22449,0,0,0,0,4,2,2,2,0,0,0,0), +(1816,0,23446,23112,0,0,0,0,0,0,8,2,0,0,0,0,0), +(1817,23785,23449,23440,0,0,0,0,0,1,4,2,0,0,0,0,0), +(1818,23785,23787,23438,0,0,0,0,0,2,6,2,0,0,0,0,0), +(1819,23784,23782,10558,23783,0,0,0,0,1,2,1,2,0,0,0,0), +(1820,23781,21877,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1821,23781,21877,2604,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1822,23781,21877,6260,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1823,23781,21877,2605,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1824,23445,23781,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(1825,23446,23781,4470,0,0,0,0,0,1,2,4,0,0,0,0,0), +(1826,23782,23445,23783,0,0,0,0,0,1,5,2,0,0,0,0,0), +(1827,36913,41163,39681,0,0,0,0,0,8,8,4,0,0,0,0,0), +(1828,23781,23782,23783,0,0,0,0,0,2,1,1,0,0,0,0,0), +(1829,23782,23783,21886,16006,0,0,0,0,2,2,4,1,0,0,0,0), +(1830,23784,23783,10558,0,0,0,0,0,1,2,1,0,0,0,0,0), +(1831,23782,23783,21887,22829,0,0,0,0,1,1,2,20,0,0,0,0), +(1832,23782,23783,21887,22832,0,0,0,0,1,1,2,20,0,0,0,0), +(1833,23784,23783,23786,7191,0,0,0,0,1,2,1,1,0,0,0,0), +(1834,23793,23786,23785,23787,0,0,0,0,8,2,2,4,0,0,0,0), +(1835,23782,23781,17020,23783,0,0,0,0,3,6,3,2,0,0,0,0), +(1836,21877,23781,22457,0,0,0,0,0,4,4,1,0,0,0,0,0), +(1837,23782,23783,10558,0,0,0,0,0,1,4,1,0,0,0,0,0), +(1838,23785,23786,23787,21884,22452,16006,0,0,2,1,2,6,6,2,0,0), +(1839,24272,22457,22451,0,0,0,0,0,4,12,12,0,0,0,0,0), +(1840,23573,22452,21884,0,0,0,0,0,8,12,12,0,0,0,0,0), +(1841,23784,23783,23781,23782,0,0,0,0,1,2,3,1,0,0,0,0), +(1842,23785,23786,22445,22449,0,0,0,0,2,2,10,2,0,0,0,0), +(1843,23793,23786,21886,22456,16006,0,0,0,8,4,10,10,2,0,0,0), +(1844,23782,23783,10558,0,0,0,0,0,1,4,1,0,0,0,0,0), +(1845,24271,21884,22451,22452,21885,23437,0,0,4,8,8,8,8,2,0,0), +(1846,23793,22456,22452,21884,23436,0,0,0,8,12,12,12,2,0,0,0), +(1848,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1849,23445,23077,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(1850,23445,23112,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(1851,23445,23117,23079,0,0,0,0,0,1,2,1,0,0,0,0,0), +(1852,23446,31079,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(1853,23446,31079,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1854,23449,31079,22456,0,0,0,0,0,2,3,3,0,0,0,0,0), +(1855,23449,31079,21885,0,0,0,0,0,2,4,3,0,0,0,0,0), +(1856,23449,31079,21884,0,0,0,0,0,2,4,3,0,0,0,0,0), +(1857,23449,31079,21886,0,0,0,0,0,2,4,3,0,0,0,0,0), +(1858,23449,31079,22457,0,0,0,0,0,2,4,3,0,0,0,0,0), +(1859,23448,31079,0,0,0,0,0,0,2,4,0,0,0,0,0,0), +(1860,23447,31079,0,0,0,0,0,0,1,5,0,0,0,0,0,0), +(1861,23447,31079,21884,0,0,0,0,0,2,4,4,0,0,0,0,0), +(1862,23448,21885,21884,31079,0,0,0,0,2,6,4,1,0,0,0,0), +(1863,23448,21884,21885,31079,0,0,0,0,2,6,4,1,0,0,0,0), +(1864,23448,22456,21886,31079,0,0,0,0,2,6,4,1,0,0,0,0), +(1865,23448,21886,22456,31079,0,0,0,0,2,6,4,1,0,0,0,0), +(1866,23448,22457,31079,0,0,0,0,0,2,8,1,0,0,0,0,0), +(1867,23448,31079,0,0,0,0,0,0,2,3,0,0,0,0,0,0), +(1868,23449,31079,23436,0,0,0,0,0,4,1,1,0,0,0,0,0), +(1869,23447,31079,0,0,0,0,0,0,2,3,0,0,0,0,0,0), +(1870,23573,31079,23441,0,0,0,0,0,2,2,1,0,0,0,0,0), +(1871,23447,31079,23112,0,0,0,0,0,2,4,2,0,0,0,0,0), +(1872,23449,31079,23117,0,0,0,0,0,2,4,2,0,0,0,0,0), +(1873,23449,21886,23437,31079,0,0,0,0,20,20,2,5,0,0,0,0), +(1874,23448,22457,23438,31079,0,0,0,0,20,20,2,5,0,0,0,0), +(1875,23448,23077,22452,0,0,0,0,0,8,2,4,0,0,0,0,0), +(1876,23449,23440,23112,0,0,0,0,0,4,2,4,0,0,0,0,0), +(1877,23448,23436,21884,0,0,0,0,0,2,2,4,0,0,0,0,0), +(1878,23447,23437,22457,0,0,0,0,0,2,2,4,0,0,0,0,0), +(1879,23573,23441,22456,0,0,0,0,0,6,2,2,0,0,0,0,0), +(1880,23436,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1881,23436,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1882,23436,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1883,23436,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1884,23436,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1885,23440,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1886,23436,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1887,23438,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1888,23438,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1889,23438,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1890,23436,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1891,23440,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1892,23438,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1893,23440,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1894,23440,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1895,23440,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1896,23441,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1897,23441,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1898,23441,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1899,23441,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1900,23439,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1901,23439,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1902,23439,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1903,23441,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1904,23437,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1905,23437,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1906,23441,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1907,23437,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1908,23438,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1909,22484,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(1910,21842,22457,21884,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1911,14341,22457,0,0,0,0,0,0,1,5,0,0,0,0,0,0), +(1912,14341,21886,0,0,0,0,0,0,1,5,0,0,0,0,0,0), +(1913,14341,22457,23572,0,0,0,0,0,1,10,1,0,0,0,0,0), +(1914,14341,21886,23572,0,0,0,0,0,1,10,1,0,0,0,0,0), +(1915,21842,22452,0,0,0,0,0,0,4,8,0,0,0,0,0,0), +(1916,21842,22452,22456,0,0,0,0,0,4,4,4,0,0,0,0,0), +(1917,21842,21884,0,0,0,0,0,0,4,8,0,0,0,0,0,0), +(1918,21842,22457,22456,0,0,0,0,0,6,3,3,0,0,0,0,0), +(1919,21842,22452,0,0,0,0,0,0,6,6,0,0,0,0,0,0), +(1920,21842,21886,0,0,0,0,0,0,6,6,0,0,0,0,0,0), +(1921,21845,22452,23572,0,0,0,0,0,8,16,1,0,0,0,0,0), +(1922,24272,21884,23572,0,0,0,0,0,10,16,1,0,0,0,0,0), +(1923,21842,22457,23572,0,0,0,0,0,6,14,1,0,0,0,0,0), +(1924,9282,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1925,21845,22452,23572,0,0,0,0,0,10,12,1,0,0,0,0,0), +(1926,24272,22451,23572,0,0,0,0,0,10,14,1,0,0,0,0,0), +(1927,24271,22457,23572,0,0,0,0,0,10,12,1,0,0,0,0,0), +(1928,21845,23571,23572,0,0,0,0,0,10,5,1,0,0,0,0,0), +(1929,24271,23571,23572,0,0,0,0,0,10,5,1,0,0,0,0,0), +(1930,21842,23571,23572,0,0,0,0,0,12,8,1,0,0,0,0,0), +(1931,21845,23571,23572,0,0,0,0,0,10,5,1,0,0,0,0,0), +(1932,24271,23571,23572,0,0,0,0,0,10,5,1,0,0,0,0,0), +(1933,21842,23571,23572,0,0,0,0,0,12,8,1,0,0,0,0,0), +(1934,21842,21887,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(1935,21877,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(1936,21877,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(1937,9282,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1938,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1939,24502,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(1940,774,20816,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1941,818,20816,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(1942,2835,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(1943,17032,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1944,17032,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1945,17031,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1946,17031,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1947,23446,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1948,23449,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(1949,25649,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(1950,21887,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(1951,21887,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1952,23793,22452,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(1953,23793,22457,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(1954,23793,23571,22445,22448,0,0,0,0,4,1,6,1,0,0,0,0), +(1955,21887,25700,14341,0,0,0,0,0,5,1,2,0,0,0,0,0), +(1956,21887,25700,14341,0,0,0,0,0,8,1,2,0,0,0,0,0), +(1957,21887,25700,14341,0,0,0,0,0,10,3,3,0,0,0,0,0), +(1958,23793,25700,14341,0,0,0,0,0,2,3,3,0,0,0,0,0), +(1959,21887,25700,14341,0,0,0,0,0,6,3,2,0,0,0,0,0), +(1960,21887,25700,14341,0,0,0,0,0,8,1,2,0,0,0,0,0), +(1961,23793,25700,14341,0,0,0,0,0,2,3,3,0,0,0,0,0), +(1962,23793,25700,14341,0,0,0,0,0,2,2,3,0,0,0,0,0), +(1963,21887,14341,0,0,0,0,0,0,6,2,0,0,0,0,0,0), +(1964,21887,14341,0,0,0,0,0,0,10,2,0,0,0,0,0,0), +(1965,21887,14341,0,0,0,0,0,0,10,3,0,0,0,0,0,0), +(1966,23793,14341,0,0,0,0,0,0,3,3,0,0,0,0,0,0), +(1967,21887,14341,0,0,0,0,0,0,6,3,0,0,0,0,0,0), +(1968,21887,14341,0,0,0,0,0,0,9,3,0,0,0,0,0,0), +(1969,21887,14341,0,0,0,0,0,0,13,3,0,0,0,0,0,0), +(1970,23793,14341,0,0,0,0,0,0,3,3,0,0,0,0,0,0), +(1971,21887,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(1972,23793,29539,22456,4342,14341,0,0,0,6,2,8,4,3,0,0,0), +(1973,23793,29539,21886,2325,14341,0,0,0,6,2,8,4,3,0,0,0), +(1974,23793,29539,21884,2604,14341,0,0,0,6,2,8,4,3,0,0,0), +(1975,23793,29539,22452,14341,0,0,0,0,6,2,8,3,0,0,0,0), +(1976,23793,25707,22456,14341,0,0,0,0,6,6,6,3,0,0,0,0), +(1977,23793,25707,22456,14341,0,0,0,0,10,8,8,3,0,0,0,0), +(1978,23793,25707,22456,14341,0,0,0,0,10,10,10,3,0,0,0,0), +(1979,23793,25708,22452,14341,0,0,0,0,6,40,4,2,0,0,0,0), +(1980,23793,25708,22452,14341,0,0,0,0,6,34,4,2,0,0,0,0), +(1981,23793,25708,22452,14341,0,0,0,0,4,20,4,2,0,0,0,0), +(1982,23793,25707,25699,22451,14341,0,0,0,6,4,8,6,2,0,0,0), +(1983,23793,25707,25699,22451,14341,0,0,0,6,6,6,4,2,0,0,0), +(1984,23793,25707,25699,22451,14341,0,0,0,10,4,8,8,2,0,0,0), +(1985,23793,25699,21885,22457,14341,0,0,0,4,8,3,3,2,0,0,0), +(1986,23793,25699,21885,22457,14341,0,0,0,8,12,5,5,2,0,0,0), +(1987,23793,25699,21885,22457,14341,0,0,0,6,10,4,4,2,0,0,0), +(1988,25748,25749,25750,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1989,25747,25749,25750,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1990,25747,25748,25750,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1991,25747,25748,25749,0,0,0,0,0,1,1,1,0,0,0,0,0), +(1992,23445,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(1993,23446,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(1994,23447,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(1995,25843,16203,14344,16207,0,0,0,0,1,4,6,1,0,0,0,0), +(1996,25844,22446,22449,23571,22461,0,0,0,1,8,8,1,1,0,0,0), +(1997,25845,22446,22445,0,22462,0,0,0,1,6,6,0,1,0,0,0), +(1998,23079,23107,23112,22452,21885,0,0,0,3,3,3,2,2,0,0,0), +(1999,23077,21929,23117,21884,22451,0,0,0,3,3,3,2,2,0,0,0), +(2000,2836,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(2001,2838,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(2002,7912,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2003,12365,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2004,22452,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2005,23781,21877,4342,0,0,0,0,0,1,1,1,0,0,0,0,0), +(2006,25867,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2007,25867,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2008,25867,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2009,25867,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2010,25867,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2011,25868,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2012,25868,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2013,25868,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2014,25868,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2015,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2016,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2017,22447,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(2018,27668,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2019,23676,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2020,27669,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2021,27671,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2022,27674,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2023,27676,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2024,27677,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2025,27678,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2026,27681,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2027,27682,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2028,27422,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2029,27425,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2030,27429,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2031,27435,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2032,27437,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2033,27438,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2034,27439,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2035,5565,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2036,17031,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2037,17032,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2038,13464,22785,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(2039,22787,22785,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(2040,13465,22785,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(2041,13463,22785,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(2042,22789,22785,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(2043,22446,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(2044,22447,22445,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(2045,22446,22445,0,0,0,0,0,0,4,10,0,0,0,0,0,0), +(2046,22447,22445,0,0,0,0,0,0,1,4,0,0,0,0,0,0), +(2047,22446,22445,22449,0,0,0,0,0,8,2,2,0,0,0,0,0), +(2048,22445,22446,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(2049,22445,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(2050,22446,22449,22457,0,0,0,0,0,6,6,6,0,0,0,0,0), +(2051,22446,22449,21886,0,0,0,0,0,6,6,6,0,0,0,0,0), +(2052,22447,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(2053,22445,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(2054,22446,22445,22457,0,0,0,0,0,2,6,2,0,0,0,0,0), +(2055,22446,22445,22451,0,0,0,0,0,1,4,1,0,0,0,0,0), +(2056,22449,22457,0,0,0,0,0,0,4,8,0,0,0,0,0,0), +(2057,22449,22456,0,0,0,0,0,0,4,8,0,0,0,0,0,0), +(2058,22449,22451,0,0,0,0,0,0,8,8,0,0,0,0,0,0), +(2059,22449,22452,0,0,0,0,0,0,8,8,0,0,0,0,0,0), +(2060,22445,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0), +(2061,22449,21885,21886,0,0,0,0,0,8,8,8,0,0,0,0,0), +(2062,23112,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2064,28472,28473,28474,28475,0,0,0,0,1,1,1,1,0,0,0,0), +(2065,28513,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(2066,22456,22451,23573,23448,23449,0,0,0,20,20,6,4,8,0,0,0), +(2067,23563,23572,22457,0,0,0,0,0,1,10,10,0,0,0,0,0), +(2068,23571,23573,23447,23449,0,0,0,0,8,6,6,8,0,0,0,0), +(2069,28483,23572,22457,0,0,0,0,0,1,10,10,0,0,0,0,0), +(2070,22456,22457,23448,0,0,0,0,0,20,20,14,0,0,0,0,0), +(2071,28425,23572,22451,0,0,0,0,0,1,8,10,0,0,0,0,0), +(2072,23571,23449,23573,0,0,0,0,0,10,14,6,0,0,0,0,0), +(2073,28428,23572,23571,0,0,0,0,0,1,8,2,0,0,0,0,0), +(2074,23571,22456,23573,23448,0,0,0,0,5,20,2,12,0,0,0,0), +(2075,28431,23572,23448,0,0,0,0,0,1,8,6,0,0,0,0,0), +(2076,22451,22452,23571,23447,0,0,0,0,12,12,4,22,0,0,0,0), +(2077,28434,23572,22457,0,0,0,0,0,1,8,10,0,0,0,0,0), +(2078,21884,22452,23447,23449,0,0,0,0,20,20,12,8,0,0,0,0), +(2079,28437,23572,23571,0,0,0,0,0,1,8,2,0,0,0,0,0), +(2080,22451,21885,23573,23449,0,0,0,0,20,20,6,12,0,0,0,0), +(2081,28440,23572,22457,0,0,0,0,0,1,8,10,0,0,0,0,0), +(2082,23077,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2083,23445,21877,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2084,23446,21877,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(2085,3577,1705,1529,3864,0,0,0,0,4,1,1,1,0,0,0,0), +(2086,6037,7910,3864,0,0,0,0,0,3,2,2,0,0,0,0,0), +(2087,12800,0,21752,0,0,0,0,0,2,0,1,0,0,0,0,0), +(2088,12364,0,21752,0,0,0,0,0,2,0,1,0,0,0,0,0), +(2089,2841,3470,2319,0,0,0,0,0,6,2,1,0,0,0,0,0), +(2090,3859,7069,3486,4234,0,0,0,0,5,2,2,1,0,0,0,0), +(2091,12655,12359,8170,0,0,0,0,0,2,6,1,0,0,0,0,0), +(2092,23448,22451,21884,23793,0,0,0,0,6,2,2,1,0,0,0,0), +(2093,29205,29206,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2094,23793,21886,0,0,0,0,0,0,4,4,0,0,0,0,0,0), +(2095,23793,21885,0,0,0,0,0,0,4,4,0,0,0,0,0,0), +(2096,23793,21884,0,0,0,0,0,0,4,4,0,0,0,0,0,0), +(2097,23793,22456,0,0,0,0,0,0,4,4,0,0,0,0,0,0), +(2098,23793,22457,0,0,0,0,0,0,4,4,0,0,0,0,0,0), +(2099,23793,25700,22457,0,0,0,0,0,6,12,8,0,0,0,0,0), +(2100,23793,25700,22457,0,0,0,0,0,4,10,6,0,0,0,0,0), +(2101,23793,25700,22457,0,0,0,0,0,4,10,6,0,0,0,0,0), +(2102,23793,25699,21884,21885,0,0,0,0,4,8,3,3,0,0,0,0), +(2103,23793,25699,21884,21885,0,0,0,0,6,12,4,4,0,0,0,0), +(2104,23793,22452,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(2105,23793,25699,21884,21885,0,0,0,0,4,8,3,3,0,0,0,0), +(2106,23793,25708,22457,0,0,0,0,0,6,24,8,0,0,0,0,0), +(2107,23793,25708,22457,0,0,0,0,0,4,16,6,0,0,0,0,0), +(2108,23793,25708,22457,0,0,0,0,0,4,16,6,0,0,0,0,0), +(2109,23793,25707,21884,21885,0,0,0,0,6,10,4,4,0,0,0,0), +(2110,23793,25707,21884,21885,0,0,0,0,4,8,3,3,0,0,0,0), +(2111,23793,25707,21884,21885,0,0,0,0,4,6,3,3,0,0,0,0), +(2112,23793,25707,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(2113,23793,29548,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(2114,23793,25700,0,0,0,0,0,0,3,3,0,0,0,0,0,0), +(2115,23793,25708,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(2116,23793,29547,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(2117,23793,29539,22451,0,0,0,0,0,4,2,4,0,0,0,0,0), +(2118,23793,29539,22451,23572,0,0,0,0,4,4,8,1,0,0,0,0), +(2119,23793,25708,22452,0,0,0,0,0,4,8,4,0,0,0,0,0), +(2120,23793,25708,22452,23572,0,0,0,0,4,16,8,1,0,0,0,0), +(2121,23793,29539,22451,22456,23572,0,0,0,6,10,15,15,1,0,0,0), +(2122,23793,29539,22451,22456,23572,0,0,0,4,8,12,12,1,0,0,0), +(2123,23793,29547,22451,22457,23572,0,0,0,6,20,18,10,1,0,0,0), +(2124,23793,21886,21885,23572,0,0,0,0,6,20,8,1,0,0,0,0), +(2125,23793,21886,22452,23572,0,0,0,0,4,16,12,1,0,0,0,0), +(2126,23793,29547,22452,22451,23572,0,0,0,4,12,18,8,1,0,0,0), +(2127,23793,29548,21886,22457,23572,0,0,0,6,28,12,12,1,0,0,0), +(2128,23793,29548,22452,22457,23572,0,0,0,4,24,22,4,1,0,0,0), +(2129,23793,29547,22451,21884,23572,0,0,0,4,14,14,10,1,0,0,0), +(2130,23793,29548,21884,22457,23572,0,0,0,6,28,18,12,1,0,0,0), +(2131,23793,29548,21884,22457,23572,0,0,0,4,24,14,10,1,0,0,0), +(2132,23793,29548,22452,22451,23572,0,0,0,8,32,20,8,1,0,0,0), +(2133,23793,29548,21884,22456,23572,0,0,0,8,30,16,16,2,0,0,0), +(2134,23793,29548,21884,22456,23572,0,0,0,6,24,12,12,1,0,0,0), +(2135,23793,29548,21884,22456,0,0,0,0,4,18,8,8,0,0,0,0), +(2136,23793,29548,22457,22451,23572,0,0,0,8,30,16,16,2,0,0,0), +(2137,23793,29548,22457,22451,23572,0,0,0,6,24,12,12,1,0,0,0), +(2138,23793,29548,22457,22451,0,0,0,0,4,18,8,8,0,0,0,0), +(2139,23793,29547,22451,23571,23572,0,0,0,8,20,16,3,2,0,0,0), +(2140,23793,29547,22451,23571,23572,0,0,0,6,16,12,2,1,0,0,0), +(2141,23793,29547,22451,23571,0,0,0,0,4,12,8,1,0,0,0,0), +(2142,23793,23571,23572,0,0,0,0,0,8,6,2,0,0,0,0,0), +(2143,23793,23571,23572,0,0,0,0,0,6,5,1,0,0,0,0,0), +(2144,23793,23571,0,0,0,0,0,0,4,3,0,0,0,0,0,0), +(2145,17031,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2146,17032,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2147,22452,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2148,21884,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2149,5026,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2150,28513,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(2151,8170,7081,8172,14341,0,0,0,0,10,8,2,1,0,0,0,0), +(2152,8170,17056,8153,8172,14341,0,0,0,10,5,4,2,1,0,0,0), +(2153,8170,8165,0,8172,14341,0,0,0,10,10,0,2,1,0,0,0), +(2154,23793,22451,22452,14341,0,0,0,0,4,2,2,2,0,0,0,0), +(2155,23793,25699,21886,14341,0,0,0,0,4,12,3,2,0,0,0,0), +(2156,23793,15416,21884,14341,0,0,0,0,4,8,3,2,0,0,0,0), +(2157,3860,7075,0,0,0,0,0,0,16,2,0,0,0,0,0,0), +(2158,3860,7081,0,0,0,0,0,0,16,2,0,0,0,0,0,0), +(2159,3860,7075,0,0,0,0,0,0,12,4,0,0,0,0,0,0), +(2160,3860,7081,0,0,0,0,0,0,12,4,0,0,0,0,0,0), +(2161,3860,7077,0,0,0,0,0,0,12,4,0,0,0,0,0,0), +(2162,23446,22452,0,0,0,0,0,0,8,4,0,0,0,0,0,0), +(2163,23446,21885,22451,0,0,0,0,0,8,2,2,0,0,0,0,0), +(2164,23446,22451,0,0,0,0,0,0,6,6,0,0,0,0,0,0), +(2165,23446,22452,0,0,0,0,0,0,10,6,0,0,0,0,0,0), +(2166,23446,21885,22451,0,0,0,0,0,8,3,3,0,0,0,0,0), +(2167,23446,22451,0,0,0,0,0,0,10,6,0,0,0,0,0,0), +(2168,23446,21884,0,0,0,0,0,0,8,6,0,0,0,0,0,0), +(2169,23446,22452,0,0,0,0,0,0,12,6,0,0,0,0,0,0), +(2170,24477,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(2171,23564,30183,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(2172,28484,30183,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(2173,28426,30183,0,0,0,0,0,0,1,5,0,0,0,0,0,0), +(2174,28429,30183,0,0,0,0,0,0,1,5,0,0,0,0,0,0), +(2175,28432,30183,0,0,0,0,0,0,1,5,0,0,0,0,0,0), +(2176,28435,30183,0,0,0,0,0,0,1,5,0,0,0,0,0,0), +(2177,28438,30183,0,0,0,0,0,0,1,5,0,0,0,0,0,0), +(2178,28441,30183,0,0,0,0,0,0,1,5,0,0,0,0,0,0), +(2179,30183,21842,21884,14341,0,0,0,0,2,4,15,2,0,0,0,0), +(2180,30183,21842,21886,14341,21885,0,0,0,2,4,10,2,10,0,0,0), +(2181,23572,24272,24271,14341,0,0,0,0,2,4,4,2,0,0,0,0), +(2182,23572,21845,24271,14341,0,0,0,0,2,4,4,2,0,0,0,0), +(2183,30183,23793,21886,14341,22451,0,0,0,2,4,10,2,10,0,0,0), +(2184,30183,23793,22456,14341,22451,0,0,0,2,4,10,2,10,0,0,0), +(2185,30183,23793,22451,29547,14341,0,0,0,2,4,10,10,2,0,0,0), +(2186,30183,23793,21885,29547,14341,0,0,0,2,4,10,6,2,0,0,0), +(2187,23572,23793,21886,14341,0,0,0,0,2,4,12,2,0,0,0,0), +(2188,23572,23793,22456,14341,0,0,0,0,2,4,12,2,0,0,0,0), +(2189,23572,23793,22451,29547,14341,0,0,0,2,4,10,6,2,0,0,0), +(2190,23572,23793,21885,29547,14341,0,0,0,2,4,10,6,2,0,0,0), +(2191,30183,23573,21885,22452,0,0,0,0,2,5,10,5,0,0,0,0), +(2192,30183,23573,21884,0,0,0,0,0,2,5,10,0,0,0,0,0), +(2193,23572,23573,21885,0,0,0,0,0,2,4,12,0,0,0,0,0), +(2194,23572,23573,21884,0,0,0,0,0,2,4,12,0,0,0,0,0), +(2195,30325,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2197,2841,20817,1206,0,0,0,0,0,4,1,1,0,0,0,0,0), +(2198,1529,20817,3575,0,0,0,0,0,1,1,2,0,0,0,0,0), +(2199,7910,21752,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2200,12800,21752,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2201,30436,30437,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2202,21840,21884,22456,21881,0,0,0,0,10,5,6,2,0,0,0,0), +(2203,21840,21887,21884,22456,21881,0,0,0,6,4,3,4,2,0,0,0), +(2204,21840,21887,21884,22456,21881,0,0,0,6,4,2,6,2,0,0,0), +(2205,21840,21885,21886,21881,0,0,0,0,10,5,5,2,0,0,0,0), +(2206,21840,21887,21885,21886,21881,0,0,0,6,4,3,3,2,0,0,0), +(2207,21840,21887,21885,21886,21881,0,0,0,4,4,2,2,2,0,0,0), +(2208,21842,22456,21884,0,0,0,0,0,1,1,1,0,0,0,0,0), +(2209,23784,21884,23826,23783,23786,0,0,0,1,2,2,4,1,0,0,0), +(2210,23784,22451,23787,23783,23786,0,0,0,1,2,2,4,1,0,0,0), +(2211,30655,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2212,30655,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2213,30655,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2214,30655,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2215,30655,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2216,30704,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(2217,5565,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2218,2841,20817,774,818,1210,0,0,0,2,1,3,3,2,0,0,0), +(2219,30817,2678,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2220,23447,22457,0,0,0,0,0,0,2,8,0,0,0,0,0,0), +(2221,21842,22457,21886,21881,0,0,0,0,4,3,3,2,0,0,0,0), +(2222,21840,21884,14341,0,0,0,0,0,5,5,2,0,0,0,0,0), +(2223,21840,21884,14341,0,0,0,0,0,7,7,2,0,0,0,0,0), +(2224,21840,21884,14341,0,0,0,0,0,9,9,2,0,0,0,0,0), +(2228,24243,22452,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(2229,22452,21886,22457,0,0,0,0,0,1,1,1,0,0,0,0,0), +(2230,31121,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(2231,2841,20817,1705,0,0,0,0,0,6,1,1,0,0,0,0,0), +(2233,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2234,31373,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(2235,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2236,23448,21886,22456,23572,0,0,0,0,8,12,12,1,0,0,0,0), +(2237,23448,21886,22456,23572,0,0,0,0,8,12,12,1,0,0,0,0), +(2238,23448,21886,22456,23572,0,0,0,0,8,12,12,1,0,0,0,0), +(2239,23449,21885,21884,23572,0,0,0,0,8,12,12,1,0,0,0,0), +(2240,23449,21885,21884,23572,0,0,0,0,8,12,12,1,0,0,0,0), +(2241,23449,21885,21884,23572,0,0,0,0,8,12,12,1,0,0,0,0), +(2242,31079,23449,21885,21884,0,0,0,0,4,2,6,6,0,0,0,0), +(2243,31079,23448,21886,22456,0,0,0,0,4,2,6,6,0,0,0,0), +(2244,31495,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2245,31517,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2246,31525,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2251,31670,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2252,31671,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2253,5565,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2254,5026,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2255,22789,22792,3371,0,0,0,0,0,1,2,1,0,0,0,0,0), +(2256,22793,22792,3371,0,0,0,0,0,1,2,1,0,0,0,0,0), +(2257,22785,22792,3371,0,0,0,0,0,2,3,1,0,0,0,0,0), +(2258,31755,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2259,31812,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0), +(2260,5565,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2261,23117,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2262,23438,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2263,23107,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2264,23107,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2265,23441,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2266,23441,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2267,23107,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2268,21929,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2269,23441,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2270,23439,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2271,0,31889,31888,31885,31884,31887,31886,31883,0,1,1,1,1,1,1,1), +(2272,0,31900,31899,31895,31894,31898,31896,31893,0,1,1,1,1,1,1,1), +(2273,0,31909,31908,31904,31903,31906,31905,31902,0,1,1,1,1,1,1,1), +(2274,0,31918,31917,31913,31912,31916,31915,31911,0,1,1,1,1,1,1,1), +(2276,30317,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2277,30316,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2278,30312,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2279,30318,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2280,30314,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2281,30313,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2282,30311,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2283,22787,22785,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(2284,22786,22787,3371,0,0,0,0,0,1,2,1,0,0,0,0,0), +(2285,22785,22789,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(2286,22790,22787,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(2287,32227,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2288,32227,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2289,32227,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2290,32227,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2291,32227,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2292,32229,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2293,32227,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2294,32228,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2295,32228,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2296,32228,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2297,32228,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2298,32227,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2299,32229,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2300,32228,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2301,32229,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2302,32229,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2303,32229,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2304,32228,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2305,32230,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2306,32230,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2307,32230,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2308,32230,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2309,32230,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2310,32230,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2311,32231,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2312,32231,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2313,32231,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2314,32230,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2315,32230,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2316,32231,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2317,32249,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2318,32249,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2319,32230,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2320,32249,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2321,32567,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2322,20816,7078,0,0,0,0,0,0,3,2,0,0,0,0,0,0), +(2323,5565,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2324,25867,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2325,25868,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2326,21885,23781,21877,0,0,0,0,0,1,2,2,0,0,0,0,0), +(2327,32423,23782,23783,0,0,0,0,0,1,1,1,0,0,0,0,0), +(2328,32428,22450,21886,22456,25700,0,0,0,2,1,2,4,4,0,0,0), +(2329,32428,22450,21886,22456,25700,0,0,0,1,1,2,2,2,0,0,0), +(2330,32428,22450,21886,22456,25700,0,0,0,3,1,4,6,3,0,0,0), +(2331,32428,22450,21886,22456,25700,0,0,0,2,1,3,4,2,0,0,0), +(2332,32428,22450,21886,22456,25707,0,0,0,2,1,2,4,4,0,0,0), +(2333,32428,22450,21886,22456,25707,0,0,0,1,1,2,2,2,0,0,0), +(2334,32428,22450,21886,22456,25707,0,0,0,3,1,4,6,3,0,0,0), +(2335,32428,22450,21886,22456,25707,0,0,0,2,1,3,4,2,0,0,0), +(2336,32428,22450,21886,22456,21842,0,0,0,2,1,2,4,1,0,0,0), +(2337,32428,22450,21886,22456,21842,0,0,0,1,1,2,2,1,0,0,0), +(2338,32428,22450,21886,22456,21842,0,0,0,3,1,4,6,2,0,0,0), +(2339,32428,22450,21886,22456,21842,0,0,0,2,1,3,4,1,0,0,0), +(2340,32428,22450,21886,22456,23446,0,0,0,2,1,2,4,4,0,0,0), +(2341,32428,22450,21886,22456,23446,0,0,0,1,1,2,2,4,0,0,0), +(2342,32428,22450,21886,22456,23446,0,0,0,3,1,4,6,12,0,0,0), +(2343,32428,22450,21886,22456,23446,0,0,0,2,1,3,4,8,0,0,0), +(2344,32428,22450,21886,22456,21842,0,0,0,1,1,2,2,1,0,0,0), +(2345,32457,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2346,23793,23786,23785,23787,23572,23436,0,0,6,1,2,4,1,2,0,0), +(2347,32502,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2348,22578,24478,24479,0,0,0,0,0,3,10,1,0,0,0,0,0), +(2349,32569,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2350,32595,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(2351,32594,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2352,32578,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2353,32620,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2354,32620,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2355,32620,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2356,32620,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2357,32569,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0), +(2358,32569,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0), +(2359,32569,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0), +(2360,32569,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0), +(2361,32569,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0), +(2362,32569,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0), +(2363,32569,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0), +(2364,32569,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0), +(2365,32569,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0), +(2366,32569,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0), +(2367,32683,32682,32681,0,0,0,0,0,1,1,1,0,0,0,0,0), +(2368,32684,32682,32681,0,0,0,0,0,1,1,1,0,0,0,0,0), +(2369,32684,32682,32683,0,0,0,0,0,1,1,1,0,0,0,0,0), +(2370,32684,32681,32683,0,0,0,0,0,1,1,1,0,0,0,0,0), +(2371,32569,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2372,9282,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2373,32569,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0), +(2374,32569,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2375,32569,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0), +(2376,32569,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2377,32569,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0), +(2378,32720,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2379,32569,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0), +(2380,32569,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0), +(2381,32569,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0), +(2382,32569,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0), +(2383,23448,23573,22451,32428,0,0,0,0,14,2,6,4,0,0,0,0), +(2384,23448,23573,22451,32428,0,0,0,0,18,2,8,2,0,0,0,0), +(2385,23449,23573,21884,32428,0,0,0,0,14,2,6,4,0,0,0,0), +(2386,23449,23573,21884,32428,0,0,0,0,18,2,8,2,0,0,0,0), +(2387,32569,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2388,32569,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0), +(2389,23793,22451,21886,32428,0,0,0,0,4,6,6,4,0,0,0,0), +(2390,23793,22451,21886,32428,0,0,0,0,6,8,8,2,0,0,0,0), +(2391,23793,22451,0,32428,0,0,0,0,4,10,0,4,0,0,0,0), +(2392,23793,22451,0,32428,0,0,0,0,6,12,0,2,0,0,0,0), +(2393,23793,22451,21885,29547,32428,0,0,0,4,4,4,12,4,0,0,0), +(2394,23793,22451,21885,29547,32428,0,0,0,6,6,6,16,2,0,0,0), +(2395,23793,22451,22452,29547,32428,0,0,0,4,4,4,12,4,0,0,0), +(2396,23793,22451,22452,29547,32428,0,0,0,6,6,6,16,2,0,0,0), +(2397,21842,24271,22457,32428,0,0,0,0,3,4,8,4,0,0,0,0), +(2398,21842,24271,22457,32428,0,0,0,0,4,2,6,2,0,0,0,0), +(2399,21842,21845,21886,32428,0,0,0,0,3,4,8,4,0,0,0,0), +(2400,21842,21845,21886,32428,0,0,0,0,4,2,6,2,0,0,0,0), +(2401,32759,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2402,32759,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2403,32759,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2404,32759,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2405,23785,23449,23787,21884,22451,23572,0,0,1,20,4,12,12,1,0,0), +(2406,23793,23786,23785,23787,23572,23440,0,0,6,1,2,4,1,2,0,0), +(2407,23793,23786,23785,23787,23572,23437,0,0,6,1,2,4,1,2,0,0), +(2408,23793,23786,23785,23787,23572,23441,0,0,6,1,2,4,1,2,0,0), +(2409,23793,23786,23785,23787,23572,23436,0,0,6,1,2,4,1,2,0,0), +(2410,23793,23786,23785,23787,23572,23439,0,0,6,1,2,4,1,2,0,0), +(2411,23793,23786,23785,23787,23572,23436,0,0,6,1,2,4,1,2,0,0), +(2412,23793,23786,23785,23787,23572,23440,0,0,6,1,2,4,1,2,0,0), +(2413,23793,23786,23785,23787,23572,23437,0,0,6,1,2,4,1,2,0,0), +(2414,23793,23786,23785,23787,23572,23438,0,0,6,1,2,4,1,2,0,0), +(2415,23793,23786,23785,23787,23572,23439,0,0,6,1,2,4,1,2,0,0), +(2416,31942,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2417,24478,23447,0,0,0,0,0,0,8,2,0,0,0,0,0,0), +(2418,24479,31079,0,0,0,0,0,0,1,4,0,0,0,0,0,0), +(2419,23449,31079,24478,24479,0,0,0,0,12,4,20,3,0,0,0,0), +(2420,24478,27860,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2421,24479,27860,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2422,22457,22793,23782,0,0,0,0,0,2,7,1,0,0,0,0,0), +(2423,21884,22793,23782,0,0,0,0,0,2,7,1,0,0,0,0,0), +(2424,21885,22793,23782,0,0,0,0,0,2,7,1,0,0,0,0,0), +(2425,21886,22793,23782,0,0,0,0,0,2,7,1,0,0,0,0,0), +(2426,22456,22793,23782,0,0,0,0,0,2,7,1,0,0,0,0,0), +(2427,9282,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2428,32569,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2429,32569,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2430,32569,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2431,27422,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2432,33050,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(2433,27515,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2434,27516,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2435,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2436,23793,21844,22456,23572,0,0,0,0,8,12,12,4,0,0,0,0), +(2437,23436,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2438,23436,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2439,23436,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2440,23438,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2441,23440,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2442,23440,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2443,23440,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2444,20725,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2445,22449,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2446,22445,22446,22449,22451,0,0,0,0,8,4,6,2,0,0,0,0), +(2447,23445,21884,23449,27503,0,0,0,0,12,2,8,2,0,0,0,0), +(2448,23573,23449,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(2449,23793,21844,22452,22456,23572,0,0,0,10,16,12,12,2,0,0,0), +(2450,22786,22791,22794,3371,0,0,0,0,7,3,1,1,0,0,0,0), +(2453,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2455,22450,22449,22446,22445,22824,0,0,0,6,10,6,30,3,0,0,0), +(2456,33352,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(2457,33614,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2458,33615,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2459,33615,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2461,0,33778,33779,33780,0,0,0,0,1,1,1,1,0,0,0,0), +(2462,23437,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2465,33784,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(2466,2840,818,3470,0,0,0,0,0,10,1,2,0,0,0,0,0), +(2467,33797,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2468,0,23446,4470,23783,0,0,0,0,0,1,4,2,0,0,0,0), +(2469,33824,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2470,27659,33838,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(2471,27658,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(2472,31672,31673,0,0,0,0,0,0,3,2,0,0,0,0,0,0), +(2473,31672,31673,33852,0,0,0,0,0,2,1,1,0,0,0,0,0), +(2474,27678,13757,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2475,33823,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2476,27682,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2477,27671,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2478,30817,1179,2678,6889,2593,785,0,0,8,4,4,8,1,3,0,0), +(2479,23449,23448,23571,23572,0,0,0,0,16,12,6,2,0,0,0,0), +(2480,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2481,34024,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2482,34023,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2483,17020,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(2484,34044,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2485,34044,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2486,22446,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2487,34056,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(2488,23782,23781,23783,11291,0,0,0,0,2,20,20,8,0,0,0,0), +(2489,23784,23786,23787,34249,0,0,0,0,4,8,8,1,0,0,0,0), +(2491,34102,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2492,21887,14341,22451,0,0,0,0,0,24,4,1,0,0,0,0,0), +(2493,21887,25719,14341,0,0,0,0,0,20,30,2,0,0,0,0,0), +(2494,23793,17056,22451,23572,0,0,0,0,8,99,2,1,0,0,0,0), +(2495,34102,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2496,22449,22447,0,0,0,0,0,0,1,4,0,0,0,0,0,0), +(2497,23446,23783,23786,0,0,0,0,0,8,8,1,0,0,0,0,0), +(2498,34102,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2499,33120,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2500,34054,34055,36860,0,0,0,0,0,6,3,1,0,0,0,0,0), +(2501,34054,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(2502,0,34055,0,0,0,0,0,0,0,4,0,0,0,0,0,0), +(2503,34054,35624,0,0,0,0,0,0,6,6,0,0,0,0,0,0), +(2504,34055,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(2505,34054,34055,35627,0,0,0,0,0,15,1,1,0,0,0,0,0), +(2506,34054,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0), +(2507,34055,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2508,34054,34055,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(2509,34054,34055,0,0,0,0,0,0,4,4,0,0,0,0,0,0), +(2510,34054,0,34052,0,0,0,0,0,16,0,4,0,0,0,0,0), +(2511,34054,34055,0,0,0,0,0,0,6,1,0,0,0,0,0,0), +(2512,0,34052,36860,0,0,0,0,0,0,4,4,0,0,0,0,0), +(2513,34056,34054,0,0,0,0,0,0,3,3,0,0,0,0,0,0), +(2514,0,34055,34052,0,0,0,0,0,0,4,1,0,0,0,0,0), +(2515,34054,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2516,34055,35622,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(2517,34054,34055,0,0,0,0,0,0,24,6,0,0,0,0,0,0), +(2518,34052,35625,0,0,0,0,0,0,1,4,0,0,0,0,0,0), +(2519,0,34054,0,0,0,0,0,0,0,15,0,0,0,0,0,0), +(2520,34054,34055,0,0,0,0,0,0,8,2,0,0,0,0,0,0), +(2521,34055,34052,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(2522,34054,34055,0,0,0,0,0,0,16,4,0,0,0,0,0,0), +(2523,34054,34056,35625,0,0,0,0,0,8,2,1,0,0,0,0,0), +(2524,0,34054,41163,34052,0,0,0,0,0,8,2,2,0,0,0,0), +(2525,34054,34056,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(2526,34054,34055,0,0,0,0,0,0,16,4,0,0,0,0,0,0), +(2527,34054,0,34052,0,0,0,0,0,6,0,6,0,0,0,0,0), +(2528,34054,35624,0,0,0,0,0,0,20,1,0,0,0,0,0,0), +(2529,34054,34055,0,0,0,0,0,0,14,3,0,0,0,0,0,0), +(2530,34054,34052,0,0,0,0,0,0,30,1,0,0,0,0,0,0), +(2531,34054,34055,0,0,0,0,0,0,16,3,0,0,0,0,0,0), +(2532,0,34055,34052,0,0,0,0,0,0,2,6,0,0,0,0,0), +(2533,34054,34056,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(2534,34052,35624,0,0,0,0,0,0,2,8,0,0,0,0,0,0), +(2535,34054,34055,0,0,0,0,0,0,10,2,0,0,0,0,0,0), +(2536,34054,34055,0,0,0,0,0,0,6,2,0,0,0,0,0,0), +(2537,34054,34057,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(2538,34052,35623,0,0,0,0,0,0,4,4,0,0,0,0,0,0), +(2539,34054,34056,0,0,0,0,0,0,8,4,0,0,0,0,0,0), +(2540,34054,34055,0,0,0,0,0,0,8,1,0,0,0,0,0,0), +(2541,34054,34055,0,0,0,0,0,0,8,1,0,0,0,0,0,0), +(2542,34044,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2543,23793,29548,22452,23572,0,0,0,0,12,12,4,1,0,0,0,0), +(2544,23793,22452,0,0,0,0,0,0,4,3,0,0,0,0,0,0), +(2545,25868,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2546,34044,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2547,34259,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0), +(2548,34259,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2549,14048,2997,2605,14341,0,0,0,0,4,1,2,1,0,0,0,0), +(2550,2840,2997,8170,14341,0,0,0,0,1,1,4,1,0,0,0,0), +(2551,14048,2997,2604,14341,0,0,0,0,4,1,2,1,0,0,0,0), +(2552,34338,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(2553,23793,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(2554,34338,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(2556,34412,17196,17194,0,0,0,0,0,1,1,1,0,0,0,0,0), +(2557,3371,22787,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(2558,21887,25700,25707,14341,0,0,0,0,20,4,4,3,0,0,0,0), +(2559,5026,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2560,23793,29547,25707,29548,25708,14341,0,0,15,5,5,5,5,3,0,0), +(2564,17056,34660,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2565,37101,39354,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2567,33470,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2568,33470,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(2569,34618,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2570,34736,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2571,43009,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2572,43010,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2573,43011,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2574,43012,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2575,34736,43009,43010,43013,0,0,0,0,1,1,1,2,0,0,0,0), +(2576,34736,43007,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(2577,43009,43007,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(2578,43010,43007,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(2579,43011,43007,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2580,43012,43007,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(2581,41803,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2582,41808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2583,41812,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2584,41806,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2585,41809,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2586,41813,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2587,41810,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2588,41806,43007,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2589,41809,43007,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2590,41802,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2591,41802,43007,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2592,41813,43007,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2594,2596,2594,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2595,22450,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2597,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2598,32569,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2599,32569,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2600,34862,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2601,34833,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2602,32479,21885,22457,23572,0,0,0,0,1,4,8,4,0,0,0,0), +(2603,32472,21886,22457,22452,23572,0,0,0,1,8,8,8,4,0,0,0), +(2604,32495,21886,22457,23572,0,0,0,0,1,8,8,4,0,0,0,0), +(2605,32480,21885,21886,23572,0,0,0,0,1,6,12,4,0,0,0,0), +(2606,32475,21886,22457,21885,23572,0,0,0,1,5,5,5,4,0,0,0), +(2607,32494,22456,21884,22457,23572,0,0,0,1,4,4,4,4,0,0,0), +(2608,32476,23571,22451,23572,0,0,0,0,1,2,2,4,0,0,0,0), +(2609,32474,22451,23572,0,0,0,0,0,1,12,4,0,0,0,0,0), +(2610,32461,21884,23572,0,0,0,0,0,1,10,4,0,0,0,0,0), +(2611,32473,35128,23571,23572,0,0,0,0,1,2,1,4,0,0,0,0), +(2612,32478,22456,23572,0,0,0,0,0,1,12,4,0,0,0,0,0), +(2613,35128,23571,31079,34664,0,0,0,0,4,4,12,5,0,0,0,0), +(2614,35128,21886,31079,34664,0,0,0,0,4,20,12,5,0,0,0,0), +(2615,35128,22451,31079,34664,0,0,0,0,4,20,12,5,0,0,0,0), +(2616,31079,32227,32228,0,0,0,0,0,12,3,3,0,0,0,0,0), +(2617,31079,32249,0,0,0,0,0,0,6,6,0,0,0,0,0,0), +(2618,35128,23572,0,0,0,0,0,0,6,9,0,0,0,0,0,0), +(2619,24271,24272,34664,0,0,0,0,0,10,10,6,0,0,0,0,0), +(2620,21845,21886,21885,34664,0,0,0,0,18,12,12,6,0,0,0,0), +(2621,24271,24272,23572,0,0,0,0,0,12,12,2,0,0,0,0,0), +(2622,21845,23572,0,0,0,0,0,0,20,2,0,0,0,0,0,0), +(2623,23793,25708,21886,23571,34664,0,0,0,30,16,18,8,6,0,0,0), +(2624,23793,29547,22451,23571,34664,0,0,0,30,16,18,8,6,0,0,0), +(2625,23793,25707,22456,23571,34664,0,0,0,30,16,18,8,6,0,0,0), +(2626,23793,29548,21886,23571,34664,0,0,0,30,16,18,8,6,0,0,0), +(2627,23793,25708,23571,23572,0,0,0,0,40,24,6,6,0,0,0,0), +(2628,23793,29547,23571,23572,0,0,0,0,40,24,6,6,0,0,0,0), +(2629,23793,25707,23571,23572,0,0,0,0,40,24,6,6,0,0,0,0), +(2630,23793,29548,23571,23572,0,0,0,0,40,24,6,6,0,0,0,0), +(2631,35128,21886,23571,34664,0,0,0,0,8,20,6,6,0,0,0,0), +(2632,35128,21884,22456,22451,34664,0,0,0,10,12,12,12,6,0,0,0), +(2633,23449,23573,21886,21885,23572,0,0,0,20,4,15,15,6,0,0,0), +(2634,23449,23573,21884,22456,23572,0,0,0,20,4,10,10,6,0,0,0), +(2636,23449,23573,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(2637,35288,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0), +(2638,23440,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2639,23439,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2640,23437,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2641,17032,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2643,22456,21885,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(2644,20406,20408,20407,0,0,0,0,0,1,1,1,0,0,0,0,0), +(2645,22446,22445,23427,0,0,0,0,0,4,8,4,0,0,0,0,0), +(2646,25867,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2647,25868,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2648,35562,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2649,35562,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2650,21840,23786,23785,23787,0,0,0,0,8,2,2,4,0,0,0,0), +(2651,23449,32228,23440,0,0,0,0,0,8,2,6,0,0,0,0,0), +(2652,23449,32231,22452,0,0,0,0,0,8,2,8,0,0,0,0,0), +(2653,23447,32227,21884,0,0,0,0,0,8,2,8,0,0,0,0,0), +(2654,23573,32230,22456,0,0,0,0,0,4,2,8,0,0,0,0,0), +(2655,23447,32249,22457,0,0,0,0,0,8,2,8,0,0,0,0,0), +(2656,23437,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2657,9282,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2658,0,35737,35739,0,0,0,0,0,0,8,1,0,0,0,0,0), +(2659,13503,22451,30183,0,0,0,0,0,1,6,2,0,0,0,0,0), +(2660,13503,21884,30183,0,0,0,0,0,1,6,2,0,0,0,0,0), +(2661,13503,21886,30183,0,0,0,0,0,1,6,2,0,0,0,0,0), +(2662,13503,22456,30183,0,0,0,0,0,1,6,2,0,0,0,0,0), +(2663,22446,22452,0,0,0,0,0,0,8,8,0,0,0,0,0,0), +(2664,32249,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2665,32249,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2666,32231,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2667,32229,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2668,35799,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(2669,35836,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2670,23117,23077,23079,21929,23112,23107,0,0,3,3,3,3,3,3,0,0), +(2671,36743,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(2672,36748,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2674,36748,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2675,35799,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(2676,35836,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2677,36743,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(2678,36758,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(2679,36758,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(2680,34054,34055,0,0,0,0,0,0,15,2,0,0,0,0,0,0), +(2681,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2682,34054,34056,34055,34052,34057,0,0,0,1,1,1,1,1,0,0,0), +(2683,0,36849,36850,36851,0,0,0,0,1,1,1,1,0,0,0,0), +(2684,34054,35624,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(2685,34054,34055,0,0,0,0,0,0,16,4,0,0,0,0,0,0), +(2686,34055,34057,0,0,0,0,0,0,6,1,0,0,0,0,0,0), +(2687,34054,34055,0,0,0,0,0,0,20,4,0,0,0,0,0,0), +(2688,34054,34055,34052,0,0,0,0,0,10,2,2,0,0,0,0,0), +(2689,3300,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2690,36870,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2691,0,37101,0,0,0,0,0,39354,0,1,0,0,0,0,0,1), +(2692,0,37101,0,0,0,0,0,39354,0,1,0,0,0,0,0,1), +(2693,43116,0,0,0,0,39354,0,0,3,0,0,0,0,1,0,0), +(2694,0,37143,37156,0,0,0,0,0,0,1,1,0,0,0,0,0), +(2695,37140,0,37156,0,0,0,0,0,1,0,1,0,0,0,0,0), +(2696,37140,37143,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2697,37140,37143,37156,0,37158,0,0,0,1,1,1,0,1,0,0,0), +(2698,37140,37143,37156,37157,0,0,0,0,1,1,1,1,0,0,0,0), +(2699,0,37147,37159,37160,0,0,0,0,0,1,1,1,0,0,0,0), +(2700,37145,0,37159,37160,0,0,0,0,1,0,1,1,0,0,0,0), +(2701,37145,37147,37159,0,0,0,0,0,1,1,1,0,0,0,0,0), +(2702,37145,37147,0,37160,0,0,0,0,1,1,0,1,0,0,0,0), +(2703,39354,43115,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2704,39354,39469,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2705,37201,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2706,37247,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2707,4470,2321,13464,0,0,0,0,0,1,1,1,0,0,0,0,0), +(2708,32863,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2709,11122,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2710,25653,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2711,32230,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2713,33447,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0), +(2714,37500,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2715,37664,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2716,37664,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2717,37700,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0), +(2718,37702,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0), +(2719,37705,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0), +(2720,37703,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0), +(2721,37704,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0), +(2722,37701,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0), +(2723,36909,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2724,36912,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(2725,37707,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2726,37664,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2727,17031,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2728,17031,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2729,17032,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2730,17032,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2731,4339,4304,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(2732,21845,22794,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(2733,36847,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2734,36827,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2735,36835,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2736,36849,36850,36851,0,0,0,0,0,1,1,1,1,0,0,0,0), +(2737,38323,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(2738,38303,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(2739,38303,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(2740,36916,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2741,0,39774,0,0,0,0,0,39354,0,1,0,0,0,0,0,1), +(2742,0,43118,0,0,0,0,0,10648,0,1,0,0,0,0,0,2), +(2743,0,43120,0,0,0,0,0,39501,0,1,0,0,0,0,0,2), +(2744,0,43122,0,0,0,0,0,39501,0,1,0,0,0,0,0,2), +(2745,0,43124,0,0,0,0,0,39501,0,1,0,0,0,0,0,2), +(2746,0,43126,0,0,0,0,0,39502,0,1,0,0,0,0,0,2), +(2747,0,43126,0,0,0,0,0,39502,0,1,0,0,0,0,0,2), +(2748,0,39774,0,0,0,0,0,39354,0,1,0,0,0,0,0,1), +(2749,0,43118,0,0,0,0,0,10648,0,1,0,0,0,0,0,2), +(2750,0,43120,0,0,0,0,0,39501,0,1,0,0,0,0,0,2), +(2751,0,43122,0,0,0,0,0,39501,0,1,0,0,0,0,0,2), +(2752,0,43122,0,0,0,0,0,39501,0,1,0,0,0,0,0,2), +(2753,0,43126,0,0,0,0,0,39502,0,1,0,0,0,0,0,2), +(2754,0,43126,0,0,0,0,0,39502,0,1,0,0,0,0,0,2), +(2755,0,39774,0,0,0,0,0,39354,0,1,0,0,0,0,0,1), +(2756,0,43118,0,0,0,0,0,10648,0,1,0,0,0,0,0,2), +(2757,0,43120,0,0,0,0,0,39501,0,1,0,0,0,0,0,2), +(2758,0,43122,0,0,0,0,0,39501,0,1,0,0,0,0,0,2), +(2759,0,43122,0,0,0,0,0,39501,0,1,0,0,0,0,0,2), +(2760,0,43126,0,0,0,0,0,39502,0,1,0,0,0,0,0,2), +(2761,0,43126,0,0,0,0,0,39502,0,1,0,0,0,0,0,2), +(2762,4339,2325,2604,8343,0,0,0,0,5,2,1,3,0,0,0,0), +(2763,4339,8343,2325,0,0,0,0,0,4,3,3,0,0,0,0,0), +(2764,37101,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2765,33568,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(2766,33568,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(2767,33568,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(2768,33568,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2769,33568,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(2770,33568,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2771,33568,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2772,33568,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(2773,33568,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(2774,33568,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2775,33568,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2776,33568,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(2777,33568,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2778,33568,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(2779,33568,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(2780,33568,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2781,33568,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2782,33568,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2783,33568,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(2784,33568,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(2785,33568,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(2786,33568,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2787,33568,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(2788,33568,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2789,33568,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2790,33568,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(2791,38425,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(2792,38425,38561,0,0,0,0,0,0,3,12,0,0,0,0,0,0), +(2793,44128,38558,43102,0,0,0,0,0,2,2,1,0,0,0,0,0), +(2794,38425,38558,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(2795,44128,38557,43102,0,0,0,0,0,2,2,1,0,0,0,0,0), +(2796,38425,35627,0,0,0,0,0,0,4,4,0,0,0,0,0,0), +(2797,38425,35627,0,0,0,0,0,0,4,4,0,0,0,0,0,0), +(2798,38425,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(2799,38425,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(2800,38425,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(2801,38425,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(2802,38425,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(2803,38425,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(2804,4375,4306,1529,4371,0,0,0,0,3,2,1,1,0,0,0,0), +(2805,38558,37705,0,0,0,0,0,0,25,6,0,0,0,0,0,0), +(2806,38425,37703,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(2807,38425,37703,0,0,0,0,0,0,5,5,0,0,0,0,0,0), +(2808,33568,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(2809,33568,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0), +(2810,38606,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2811,38607,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2812,39213,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2813,36916,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(2814,36916,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(2815,36916,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(2816,36916,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(2817,36916,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(2818,36916,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(2819,39315,39316,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2820,39316,39313,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2821,39315,39313,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2822,32428,22450,21886,22456,25700,0,0,0,1,1,2,2,2,0,0,0), +(2823,39151,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2824,39469,39354,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(2825,39774,39354,0,0,0,0,0,0,3,2,0,0,0,0,0,0), +(2826,39151,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(2827,39573,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(2828,35949,35948,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(2829,39616,39643,0,0,0,0,0,0,3,3,0,0,0,0,0,0), +(2830,17031,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2831,17032,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2832,36916,37705,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(2833,39738,0,39739,0,0,0,0,0,1,0,1,0,0,0,0,0), +(2834,39747,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2835,39334,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(2836,33568,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(2837,33568,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(2838,33568,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(2839,33568,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(2840,33568,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(2841,35625,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2842,35625,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2843,36860,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2844,36860,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2845,35623,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2846,35623,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2847,35627,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2848,35627,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2849,35624,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2850,35624,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2851,35622,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2852,35622,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2853,40199,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2854,36918,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2855,36917,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2856,36917,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2857,36917,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2858,36917,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2859,36901,36906,3371,0,0,0,0,0,1,2,1,0,0,0,0,0), +(2860,36905,36901,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(2861,36901,3371,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(2862,0,0,36907,3371,0,0,0,0,0,0,2,1,0,0,0,0), +(2863,36901,36903,3371,0,0,0,0,0,2,2,1,0,0,0,0,0), +(2864,36901,37921,3371,0,0,0,0,0,1,2,1,0,0,0,0,0), +(2865,36901,36904,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(2866,36920,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2867,36917,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2868,36920,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2869,36907,3371,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(2870,40195,3371,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(2871,23077,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2872,36917,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2873,36920,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2874,36923,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2875,36920,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2876,36920,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2877,36920,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2878,36926,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2879,36926,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2880,36926,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2881,36926,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2882,36926,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2883,36926,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2884,36926,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2885,36926,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2886,36926,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2887,36932,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2888,36926,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2889,36932,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2890,36926,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2891,36929,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2892,36926,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2893,36929,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2894,36929,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2895,36929,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2896,36929,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2897,36926,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2898,36929,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2899,36929,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2900,36929,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2901,36929,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2902,36926,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2903,36929,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2904,36929,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2905,36929,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2906,36926,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2907,36929,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2908,36929,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2909,36929,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2910,36929,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2911,36926,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2912,36929,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2913,36926,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2914,36901,3371,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(2915,36901,3371,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(2916,37921,36901,3371,0,0,0,0,0,4,1,1,0,0,0,0,0), +(2917,36901,36907,3371,0,0,0,0,0,1,2,1,0,0,0,0,0), +(2918,36906,36905,36908,3371,0,0,0,0,5,5,1,1,0,0,0,0), +(2919,36905,37704,36908,3371,0,0,0,0,7,3,1,1,0,0,0,0), +(2920,36905,36901,36908,3371,0,0,0,0,7,3,1,1,0,0,0,0), +(2921,36907,36905,3371,0,0,0,0,0,2,2,1,0,0,0,0,0), +(2922,36906,3371,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(2923,36932,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2924,36932,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2925,36932,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2926,36932,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2927,36932,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2928,36926,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2929,36932,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2930,36932,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2931,36932,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2932,36932,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2933,36926,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2934,36932,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2935,36932,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2936,36932,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2937,36932,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2938,36932,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2939,36932,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2940,36932,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2941,36923,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2942,37701,3371,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(2943,37702,3371,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(2944,37704,3371,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(2945,37705,3371,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(2946,36923,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2947,36923,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2948,37703,3371,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(2949,36923,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2950,36918,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2951,36918,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2952,36918,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2953,36921,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2954,36918,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2955,36921,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2956,36918,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2957,36924,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2958,36924,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2959,36924,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2960,36924,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2961,36918,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2962,36921,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2963,36924,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2964,36921,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2965,36921,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2966,36921,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2967,36927,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2968,36927,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2969,36927,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2970,36927,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2971,36927,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2972,36927,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2973,36927,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2974,36927,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2975,36927,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2976,36933,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2977,36927,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2978,36933,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2979,36927,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2980,36930,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2981,36927,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2982,36930,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2983,36930,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2984,36930,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2985,36927,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2986,36930,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2987,36930,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2988,36930,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2989,36930,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2990,36927,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2991,36930,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2992,36930,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2993,36930,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2994,36927,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2995,36930,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2996,36930,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2997,36930,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2998,36930,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(2999,36927,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3000,36927,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3001,36933,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3002,36933,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3003,36933,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3004,36933,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3005,36933,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3006,36927,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3007,36933,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3008,36933,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3009,36933,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3010,36933,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3011,36927,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3012,36933,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3013,36933,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3014,36933,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3015,36933,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3016,36933,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3017,36933,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3018,36933,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3019,36917,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3020,36930,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3021,35623,35624,36860,0,0,35622,0,0,1,1,1,0,0,1,0,0), +(3022,36930,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3023,40110,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3024,36906,40195,36908,3371,0,0,0,0,7,3,1,1,0,0,0,0), +(3025,36904,3371,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(3026,36906,37701,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(3027,36903,40195,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(3028,36905,40195,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(3029,36913,39683,39684,40533,0,0,0,0,10,2,1,1,0,0,0,0), +(3030,36916,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(3031,36916,36913,0,0,0,0,0,0,6,5,0,0,0,0,0,0), +(3032,36916,36913,0,0,0,0,0,0,3,8,0,0,0,0,0,0), +(3033,36916,36913,37701,0,0,0,0,0,6,5,1,0,0,0,0,0), +(3034,36916,36913,37701,0,0,0,0,0,5,5,1,0,0,0,0,0), +(3035,36913,37701,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3036,36913,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(3037,36916,36913,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(3038,39682,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(3039,36916,39690,0,0,0,0,0,0,8,8,0,0,0,0,0,0), +(3040,36916,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0), +(3041,36916,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0), +(3042,36916,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0), +(3043,36916,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(3044,36916,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(3045,36916,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(3046,36916,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(3047,36916,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(3048,36916,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(3049,36916,37705,0,0,0,0,0,0,8,2,0,0,0,0,0,0), +(3050,36916,37705,0,0,0,0,0,0,8,2,0,0,0,0,0,0), +(3051,36916,37705,0,0,0,0,0,0,8,2,0,0,0,0,0,0), +(3052,36916,37705,0,0,0,0,0,0,8,2,0,0,0,0,0,0), +(3053,36913,37702,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(3054,36913,37700,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(3055,33470,0,39682,0,0,0,0,0,12,0,1,0,0,0,0,0), +(3056,36916,36913,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(3057,36913,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0), +(3058,36913,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0), +(3059,39690,39681,0,0,0,0,0,0,6,6,0,0,0,0,0,0), +(3060,36913,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0), +(3061,36916,36913,37705,0,0,0,0,0,5,5,1,0,0,0,0,0), +(3062,36916,36913,0,0,0,0,0,0,3,8,0,0,0,0,0,0), +(3063,36913,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(3064,36913,37705,0,0,0,0,0,0,14,1,0,0,0,0,0,0), +(3065,41130,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0), +(3066,36916,36913,37702,0,0,0,0,0,12,4,2,0,0,0,0,0), +(3067,36916,36913,37702,0,0,0,0,0,8,6,2,0,0,0,0,0), +(3068,36916,36913,37703,0,0,0,0,0,12,4,1,0,0,0,0,0), +(3069,36913,37703,0,0,0,0,0,0,12,2,0,0,0,0,0,0), +(3070,36913,37701,0,0,0,0,0,0,15,2,0,0,0,0,0,0), +(3071,36913,37702,0,0,0,0,0,0,16,1,0,0,0,0,0,0), +(3072,36913,37702,0,0,0,0,0,0,14,1,0,0,0,0,0,0), +(3073,36913,37702,0,0,0,0,0,0,20,2,0,0,0,0,0,0), +(3074,36913,37701,0,0,0,0,0,0,14,2,0,0,0,0,0,0), +(3075,36913,37701,0,0,0,0,0,0,13,2,0,0,0,0,0,0), +(3076,38425,37700,37705,0,0,0,0,0,6,5,5,0,0,0,0,0), +(3077,36916,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(3078,36916,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(3079,36916,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0), +(3080,36916,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(3081,36916,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(3082,36913,37700,0,0,0,0,0,0,7,2,0,0,0,0,0,0), +(3083,41163,36860,35624,35627,0,0,0,0,3,1,1,1,0,0,0,0), +(3084,36910,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(3085,38425,35623,0,0,0,0,0,0,8,6,0,0,0,0,0,0), +(3086,36913,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(3087,36913,36860,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3088,36913,35622,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3089,36913,35624,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3090,36913,36860,0,0,0,0,0,0,14,1,0,0,0,0,0,0), +(3091,36913,35624,0,0,0,0,0,0,14,1,0,0,0,0,0,0), +(3092,36913,35622,0,0,0,0,0,0,14,1,0,0,0,0,0,0), +(3093,36913,35623,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3094,36913,35622,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3095,36913,35622,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3096,36913,35627,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3097,36913,36860,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3098,36913,35623,0,0,0,0,0,0,14,1,0,0,0,0,0,0), +(3099,36913,35624,0,0,0,0,0,0,14,1,0,0,0,0,0,0), +(3100,36913,35627,0,0,0,0,0,0,14,1,0,0,0,0,0,0), +(3101,36913,37663,43102,0,0,0,0,0,8,8,2,0,0,0,0,0), +(3102,36913,37663,43102,0,0,0,0,0,6,6,2,0,0,0,0,0), +(3103,36913,37663,43102,0,0,0,0,0,6,6,2,0,0,0,0,0), +(3104,36913,37663,43102,0,0,0,0,0,4,4,1,0,0,0,0,0), +(3105,36913,37663,43102,0,0,0,0,0,4,4,1,0,0,0,0,0), +(3106,36913,37663,43102,0,0,0,0,0,4,4,1,0,0,0,0,0), +(3107,36913,37663,43102,0,0,0,0,0,4,3,1,0,0,0,0,0), +(3108,36913,37663,43102,0,0,0,0,0,4,3,1,0,0,0,0,0), +(3109,36913,37663,43102,0,0,0,0,0,4,3,1,0,0,0,0,0), +(3110,41266,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3111,41266,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3112,41266,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3113,41266,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3114,41266,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3115,41266,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3116,41266,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3117,41266,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3118,41266,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3119,41266,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3120,41334,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3121,41334,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3122,41334,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3123,41334,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3124,41334,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3125,41334,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3126,41334,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3127,41334,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3128,41334,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3129,41334,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3130,41266,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3135,36916,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(3136,36913,41163,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(3139,41506,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3140,36916,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(3141,36916,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(3142,36913,41163,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(3143,33470,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(3144,33470,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(3145,41510,34054,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(3146,41510,38426,0,0,0,0,0,0,8,1,0,0,0,0,0,0), +(3147,41510,38426,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(3148,41510,38426,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(3149,41510,38426,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(3150,41510,38426,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(3151,41510,38426,0,0,0,0,0,0,5,1,0,0,0,0,0,0), +(3152,41510,38426,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(3153,41510,38426,36783,0,0,0,0,0,7,4,1,0,0,0,0,0), +(3154,41510,38426,36783,0,0,0,0,0,8,4,1,0,0,0,0,0), +(3155,41510,38426,36783,0,0,0,0,0,5,4,2,0,0,0,0,0), +(3156,41510,38426,0,0,0,0,0,0,7,1,0,0,0,0,0,0), +(3157,41510,38426,0,0,0,0,0,0,8,1,0,0,0,0,0,0), +(3158,41510,38426,0,0,0,0,0,0,8,1,0,0,0,0,0,0), +(3159,41510,38426,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(3160,41510,38426,0,0,0,0,0,0,9,1,0,0,0,0,0,0), +(3161,41510,38426,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(3162,41510,38426,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(3163,41511,42253,38426,0,0,0,0,0,5,2,2,0,0,0,0,0), +(3164,41511,42253,38426,0,0,0,0,0,5,2,2,0,0,0,0,0), +(3165,41511,42253,38426,0,0,0,0,0,4,2,2,0,0,0,0,0), +(3166,41510,2604,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(3167,41510,6260,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(3168,41510,4341,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(3169,41510,2605,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(3170,41510,2604,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(3171,41510,6260,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(3172,41510,4341,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(3173,41510,2605,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(3174,41511,35625,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(3175,41511,35627,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(3176,41511,36860,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(3177,41593,41595,38426,0,0,0,0,0,4,2,1,0,0,0,0,0), +(3178,41594,41593,38426,0,0,0,0,0,4,4,1,0,0,0,0,0), +(3179,41595,41594,38426,0,0,0,0,0,4,2,1,0,0,0,0,0), +(3180,41511,38426,0,0,0,0,0,0,6,2,0,0,0,0,0,0), +(3181,37704,42253,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(3182,35625,42253,43102,0,0,0,0,0,4,4,1,0,0,0,0,0), +(3183,37702,42253,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(3184,36860,42253,43102,0,0,0,0,0,4,4,1,0,0,0,0,0), +(3185,41510,36783,0,0,0,0,0,0,7,1,0,0,0,0,0,0), +(3186,41510,36783,0,0,0,0,0,0,8,1,0,0,0,0,0,0), +(3187,41511,35625,35622,36784,43102,0,0,0,5,6,4,1,1,0,0,0), +(3188,41511,36860,35627,36784,43102,0,0,0,5,6,4,1,1,0,0,0), +(3189,41593,41511,42253,38426,0,0,0,0,1,6,4,1,0,0,0,0), +(3190,41595,41511,38425,42253,38426,0,0,0,1,5,2,4,1,0,0,0), +(3191,41595,41511,42253,38426,0,0,0,0,1,4,4,1,0,0,0,0), +(3192,41594,41511,42253,38426,0,0,0,0,1,6,4,1,0,0,0,0), +(3193,41594,41511,42253,38426,0,0,0,0,1,4,4,1,0,0,0,0), +(3194,41594,41511,38425,42253,38426,0,0,0,1,4,2,4,1,0,0,0), +(3195,41594,41511,38426,43102,0,0,0,0,8,6,1,1,0,0,0,0), +(3196,41594,41511,38426,43102,0,0,0,0,4,4,1,1,0,0,0,0), +(3197,41593,41511,38426,43102,0,0,0,0,8,6,1,1,0,0,0,0), +(3198,41593,41511,38426,43102,0,0,0,0,4,4,1,1,0,0,0,0), +(3199,41595,41511,38426,43102,0,0,0,0,8,6,1,1,0,0,0,0), +(3200,41595,41511,38426,43102,0,0,0,0,4,4,1,1,0,0,0,0), +(3201,41510,38426,0,0,0,0,0,0,5,1,0,0,0,0,0,0), +(3202,41510,0,38426,0,0,0,0,0,3,0,1,0,0,0,0,0), +(3205,41520,37703,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(3206,42225,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3207,42225,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3208,42225,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3209,42225,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3210,42225,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3211,42225,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3212,42225,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3213,42225,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3214,42225,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3215,42225,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3216,42225,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3217,42225,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3218,42225,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3219,42225,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3220,42225,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3221,42225,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3222,42225,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3223,42225,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3224,37701,36917,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(3225,37701,36920,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(3226,35624,36929,36932,0,0,0,0,0,1,2,2,0,0,0,0,0), +(3227,35624,36917,36920,36923,0,0,0,0,1,1,2,1,0,0,0,0), +(3228,41163,36933,34052,0,0,0,0,0,1,1,1,0,0,0,0,0), +(3229,41163,36918,36921,0,0,0,0,0,2,2,1,0,0,0,0,0), +(3230,41163,36927,36930,0,0,0,0,0,2,2,1,0,0,0,0,0), +(3231,41163,36924,36933,0,0,0,0,0,2,2,1,0,0,0,0,0), +(3232,41163,36933,36918,0,0,0,0,0,2,2,1,0,0,0,0,0), +(3233,36932,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3234,36926,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3235,36926,36932,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3236,36913,37663,43102,0,0,0,0,0,6,6,2,0,0,0,0,0), +(3237,36913,37705,0,0,0,0,0,0,15,2,0,0,0,0,0,0), +(3238,23446,22573,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(3239,36916,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(3240,36913,41163,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(3241,36913,37663,43102,0,0,0,0,0,4,3,1,0,0,0,0,0), +(3242,33448,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0), +(3243,36916,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(3244,39681,39690,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(3245,36916,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(3246,36913,7005,2901,5956,0,0,0,0,10,1,1,1,0,0,0,0), +(3247,33470,39690,0,0,0,0,0,0,1,3,0,0,0,0,0,0), +(3248,36916,37701,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(3249,36913,33568,35627,0,0,0,0,0,8,2,1,0,0,0,0,0), +(3250,39683,39682,39681,0,0,0,0,0,2,4,2,0,0,0,0,0), +(3251,39683,39682,39681,0,0,0,0,0,2,2,8,0,0,0,0,0), +(3252,36913,39690,0,0,0,0,0,0,5,1,0,0,0,0,0,0), +(3253,41163,36913,35622,35623,0,0,0,0,2,8,2,2,0,0,0,0), +(3254,39683,36920,36921,0,0,0,0,0,1,1,1,0,0,0,0,0), +(3255,36916,37705,0,0,0,0,0,0,8,1,0,0,0,0,0,0), +(3256,36913,35623,0,0,0,0,0,0,8,8,0,0,0,0,0,0), +(3257,41163,34052,39681,0,0,0,0,0,6,2,2,0,0,0,0,0), +(3258,36913,39690,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3259,36913,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(3260,36913,39681,0,0,0,0,0,0,12,2,0,0,0,0,0,0), +(3261,36913,37705,0,0,0,0,0,0,12,2,0,0,0,0,0,0), +(3262,36913,36927,0,0,0,0,0,0,10,2,0,0,0,0,0,0), +(3263,41163,36913,35623,35622,43102,40533,0,0,10,20,15,15,1,1,0,0), +(3264,41163,38425,36924,35624,43102,0,0,0,8,4,2,4,1,0,0,0), +(3265,41163,38425,36918,35623,43102,0,0,0,8,4,2,4,1,0,0,0), +(3266,41163,38425,36930,36860,43102,0,0,0,8,4,2,4,1,0,0,0), +(3267,41163,38425,36918,35627,43102,0,0,0,8,4,2,4,1,0,0,0), +(3268,41163,38425,36933,35625,43102,0,0,0,8,4,2,4,1,0,0,0), +(3269,41163,38425,36921,35623,43102,0,0,0,8,4,2,4,1,0,0,0), +(3270,41163,42225,36860,35627,43102,0,0,0,2,4,4,4,1,0,0,0), +(3271,41163,42225,35624,35625,43102,0,0,0,2,4,4,4,1,0,0,0), +(3272,41163,42225,35622,35623,43102,0,0,0,2,4,4,4,1,0,0,0), +(3273,41163,42225,35623,36860,43102,0,0,0,2,4,6,6,1,0,0,0), +(3274,41163,42225,35625,35624,43102,0,0,0,2,4,6,6,1,0,0,0), +(3275,41163,42225,35627,35622,43102,0,0,0,2,4,6,6,1,0,0,0), +(3276,36913,39690,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3277,36901,36905,3371,0,0,0,0,0,1,2,1,0,0,0,0,0), +(3278,36783,34054,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3279,36784,34054,0,0,0,0,0,0,1,4,0,0,0,0,0,0), +(3280,36913,35623,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3281,36913,35622,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3282,36913,35622,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3283,36913,35627,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3284,36913,36860,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3285,36913,35623,0,0,0,0,0,0,14,1,0,0,0,0,0,0), +(3286,36913,35624,0,0,0,0,0,0,14,1,0,0,0,0,0,0), +(3287,36913,35627,0,0,0,0,0,0,14,1,0,0,0,0,0,0), +(3288,41163,38425,36927,35622,43102,0,0,0,8,4,2,4,1,0,0,0), +(3289,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3290,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3291,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3292,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3293,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3294,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3295,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3296,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3297,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3298,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3299,43118,0,0,0,0,0,10648,0,3,0,0,0,0,0,1,0), +(3300,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3301,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3302,43120,0,0,0,0,0,10648,0,3,0,0,0,0,0,1,0), +(3303,43122,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3304,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3305,43120,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3306,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3307,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3308,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3309,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3310,39502,43126,0,0,0,0,0,0,1,3,0,0,0,0,0,0), +(3311,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3312,43116,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3313,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3314,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3315,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3316,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3317,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3318,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3319,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3320,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3321,43120,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3322,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3323,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3324,43120,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3325,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3326,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3327,43122,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3328,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3329,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3330,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3331,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3332,39502,43126,0,0,0,0,0,0,1,3,0,0,0,0,0,0), +(3333,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(3334,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3335,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3336,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3337,43116,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3338,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3339,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3340,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3341,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3342,43120,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3343,43120,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3344,43122,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3345,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3346,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3347,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3348,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3349,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3350,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3351,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3352,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3353,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3354,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3355,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3356,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3357,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3358,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3359,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3360,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3361,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3362,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3363,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3364,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3365,43120,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3366,43120,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3367,43122,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3368,43124,0,0,0,0,0,0,39501,3,0,0,0,0,0,0,1), +(3369,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3370,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3371,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3372,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3373,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3374,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3375,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3376,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3377,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3378,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3379,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3380,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3381,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3382,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3383,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3384,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3385,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3386,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3387,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3388,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3389,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3390,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3391,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3392,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3393,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3394,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3395,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3396,43124,0,0,0,0,0,0,39501,3,0,0,0,0,0,0,1), +(3397,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3398,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3399,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3400,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3401,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3402,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3403,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3404,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3405,43120,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3406,43120,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3407,43122,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3408,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3409,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3410,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3411,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3412,43120,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3413,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3414,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3415,43120,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3416,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3417,43122,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3418,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3419,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3420,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3421,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3422,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3423,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3424,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3425,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3426,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3427,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3428,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3429,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3430,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3431,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3432,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3433,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3434,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3435,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3436,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3437,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3438,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3439,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3440,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3441,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3442,43120,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3443,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3444,43122,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3445,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3446,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3447,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3448,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3449,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3450,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3451,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3452,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3453,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3454,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3455,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3456,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3457,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3458,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3459,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3460,43120,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3461,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3462,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3463,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3464,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3465,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3466,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3467,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3468,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3469,43122,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3470,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3471,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3472,43122,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3473,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3474,43124,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3475,43122,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3476,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3477,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3478,43122,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3479,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3480,43124,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3481,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3482,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3483,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3484,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3485,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3486,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3487,43124,0,0,0,0,0,0,39501,3,0,0,0,0,0,0,1), +(3488,43124,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3489,43124,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3490,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3491,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3492,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3493,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3494,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3495,43124,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3496,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3497,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3498,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3499,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3500,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3501,43120,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3502,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3503,43120,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3504,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3505,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3506,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3507,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3508,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3509,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3510,43122,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3511,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3512,39502,43126,0,0,0,0,0,0,1,3,0,0,0,0,0,0), +(3513,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3514,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3515,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3516,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3517,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3518,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3519,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3520,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3521,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3522,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3523,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3524,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3525,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3526,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3527,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3528,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3529,43120,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3530,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3531,43122,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3532,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3533,43120,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(3534,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3535,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3536,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3537,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3538,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3539,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3540,39469,785,0,0,39354,10648,39501,39502,1,1,0,0,1,1,1,1), +(3541,0,42977,42978,42979,42980,42981,42982,42983,0,1,1,1,1,1,1,1), +(3542,42975,0,42978,42979,42980,42981,42982,42983,1,0,1,1,1,1,1,1), +(3543,42975,42977,0,42979,42980,42981,42982,42983,1,1,0,1,1,1,1,1), +(3544,42975,42977,42978,0,42980,42981,42982,42983,1,1,1,0,1,1,1,1), +(3545,42975,42977,42978,42979,0,42981,42982,42983,1,1,1,1,0,1,1,1), +(3546,42975,42977,42978,42979,42980,0,42982,42983,1,1,1,1,1,0,1,1), +(3547,42975,42977,42978,42979,42980,42981,0,42983,1,1,1,1,1,1,0,1), +(3548,42975,42977,42978,42979,42980,42981,42982,0,1,1,1,1,1,1,1,0), +(3549,43013,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3550,41806,41809,41813,43007,0,0,0,0,2,2,2,1,0,0,0,0), +(3551,36917,36923,0,35623,0,0,0,0,1,1,0,1,0,0,0,0), +(3552,36932,36929,0,36860,0,0,0,0,1,1,0,1,0,0,0,0), +(3553,41810,43007,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3554,43010,43012,43007,0,0,0,0,0,1,1,1,0,0,0,0,0), +(3555,43013,43007,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(3556,43012,43007,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3557,41808,43007,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(3558,43011,43007,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3559,41801,43007,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3560,34736,43007,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3561,41807,43007,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3562,41807,43007,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3563,43009,43007,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3564,44128,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3565,43100,43013,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(3566,44128,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3567,44128,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3568,44128,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3569,44128,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3570,44128,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3571,44128,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3572,44128,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3573,43103,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3574,39338,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(3575,43104,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3576,39339,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(3577,43105,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3578,39340,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(3579,43106,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3580,39341,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(3581,43107,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3582,39342,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(3583,43108,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3584,39343,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(3585,43109,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(3586,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3587,43137,43138,0,0,0,0,0,0,1,6,0,0,0,0,0,0), +(3588,34752,43143,0,0,0,0,0,0,4,4,0,0,0,0,0,0), +(3589,43013,43148,0,0,0,0,0,0,4,4,0,0,0,0,0,0), +(3590,43214,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3591,36782,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(3592,36932,36917,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3593,36923,36926,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3594,36929,36920,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3595,36920,36932,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3596,36917,36929,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3597,36920,36926,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3598,36923,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3599,37701,36929,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(3600,37701,36923,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(3601,35624,36926,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(3602,35624,36932,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(3603,35624,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(3604,35624,35627,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3605,41163,35624,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(3606,41163,35627,36918,0,0,0,0,0,2,3,1,0,0,0,0,0), +(3607,41163,35623,36860,0,0,0,0,0,2,1,2,0,0,0,0,0), +(3608,41163,35622,36783,0,0,0,0,0,2,1,4,0,0,0,0,0), +(3609,43116,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3610,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3611,43116,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3612,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3613,43116,0,0,0,39354,10648,39501,39502,3,0,0,0,1,1,1,1), +(3614,43116,0,0,0,39354,10648,39501,39502,3,0,0,0,1,1,1,1), +(3615,43116,0,0,0,39354,10648,39501,39502,3,0,0,0,1,1,1,1), +(3616,43116,0,0,0,39354,10648,39501,39502,3,0,0,0,1,1,1,1), +(3617,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3618,43120,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3619,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3620,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3621,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3622,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3623,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3624,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3625,43116,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3626,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3627,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3628,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3629,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3630,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3631,43116,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3632,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3633,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3634,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3635,43116,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3636,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3637,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3638,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3639,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3640,43116,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3641,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3642,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3643,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3644,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3645,43116,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3646,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3647,43120,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3648,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3649,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3650,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3651,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3652,43116,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3653,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3654,43116,0,0,0,39354,10648,39501,39502,3,0,0,0,1,1,1,1), +(3655,43116,0,0,0,39354,10648,39501,39502,3,0,0,0,1,1,1,1), +(3656,43116,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3657,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3658,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3659,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3660,43116,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3661,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3662,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3663,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3664,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3665,43116,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3666,39774,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3667,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3668,0,0,37101,0,0,0,0,39354,0,0,2,0,0,0,0,1), +(3669,0,39774,0,0,0,0,0,39354,0,1,0,0,0,0,0,1), +(3670,0,43118,0,0,0,0,0,10648,0,1,0,0,0,0,0,2), +(3671,0,43120,0,0,0,0,0,39501,0,1,0,0,0,0,0,2), +(3672,43122,39501,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(3673,0,43124,0,0,0,0,0,39501,0,1,0,0,0,0,0,2), +(3674,0,43126,0,0,0,0,0,39502,0,1,0,0,0,0,0,2), +(3675,0,43126,0,0,0,0,0,39502,0,1,0,0,0,0,0,2), +(3676,0,37101,0,0,0,0,0,39354,0,2,0,0,0,0,0,1), +(3677,0,39774,0,0,0,0,0,39354,0,1,0,0,0,0,0,1), +(3678,0,43118,0,0,0,0,0,10648,0,1,0,0,0,0,0,2), +(3679,0,43120,0,0,0,0,0,39501,0,1,0,0,0,0,0,2), +(3680,0,43122,0,0,0,0,0,39501,0,1,0,0,0,0,0,2), +(3681,0,43124,0,0,0,0,0,39501,0,1,0,0,0,0,0,2), +(3682,0,43126,0,0,0,0,0,39502,0,1,0,0,0,0,0,2), +(3683,0,43126,0,0,0,0,0,39502,0,1,0,0,0,0,0,2), +(3684,41163,36860,0,0,0,0,0,0,4,4,0,0,0,0,0,0), +(3685,41163,36860,0,0,0,0,0,0,4,4,0,0,0,0,0,0), +(3686,30817,43501,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(3687,34736,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3688,36782,22577,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3689,41810,12808,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3690,41800,34736,41803,43007,0,0,0,0,2,2,2,1,0,0,0,0), +(3691,41813,43012,41809,43007,0,0,0,0,2,2,2,1,0,0,0,0), +(3692,39354,43115,0,0,0,0,0,0,10,5,0,0,0,0,0,0), +(3693,33448,3371,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(3694,33447,0,3371,0,0,0,0,0,10,0,1,0,0,0,0,0), +(3695,41163,35622,36860,43102,0,0,0,0,2,3,3,1,0,0,0,0), +(3696,43609,43616,43610,0,0,0,0,0,1,1,1,0,0,0,0,0), +(3697,43614,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(3698,43620,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(3699,43621,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(3700,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(3701,43116,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(3702,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3703,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3704,43124,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3705,0,43120,0,0,0,0,0,10648,0,2,0,0,0,0,0,1), +(3706,36916,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(3707,36913,41163,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(3708,36916,36913,0,0,0,0,0,0,6,5,0,0,0,0,0,0), +(3709,36916,36913,0,0,0,0,0,0,3,8,0,0,0,0,0,0), +(3710,36913,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(3711,36913,37705,0,0,0,0,0,0,14,1,0,0,0,0,0,0), +(3712,36913,37702,0,0,0,0,0,0,15,2,0,0,0,0,0,0), +(3713,43117,10648,0,0,0,0,0,0,5,10,0,0,0,0,0,0), +(3714,43117,10648,0,0,0,0,0,0,5,10,0,0,0,0,0,0), +(3715,43117,10648,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(3716,43119,10648,0,0,0,0,0,0,5,10,0,0,0,0,0,0), +(3717,43119,10648,0,0,0,0,0,0,5,10,0,0,0,0,0,0), +(3718,43119,10648,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(3719,43121,39501,43120,0,0,0,0,0,1,2,1,0,0,0,0,0), +(3720,43121,39501,0,0,0,0,0,0,5,10,0,0,0,0,0,0), +(3721,43121,0,0,39501,0,0,0,0,5,0,0,10,0,0,0,0), +(3722,43121,39501,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(3723,43123,39501,0,0,0,0,0,0,8,10,0,0,0,0,0,0), +(3724,43123,39501,0,0,0,0,0,0,8,10,0,0,0,0,0,0), +(3725,43125,39502,0,0,0,0,0,0,6,10,0,0,0,0,0,0), +(3726,43125,39502,0,0,0,0,0,0,6,10,0,0,0,0,0,0), +(3727,43127,39502,43102,0,0,0,0,0,5,10,1,0,0,0,0,0), +(3728,43127,39502,43102,0,0,0,0,0,5,10,1,0,0,0,0,0), +(3729,43120,10648,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(3730,43126,39502,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(3731,43126,39502,0,0,0,0,0,0,3,2,0,0,0,0,0,0), +(3732,43123,39501,0,0,0,0,0,0,5,1,0,0,0,0,0,0), +(3733,43125,39502,21886,0,0,0,0,0,3,1,3,0,0,0,0,0), +(3734,39502,43127,35625,0,0,0,0,0,1,6,1,0,0,0,0,0), +(3735,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3736,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3737,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3738,43966,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3739,41511,37702,37701,38426,0,0,0,0,3,3,3,2,0,0,0,0), +(3740,41511,37702,37701,38426,0,0,0,0,3,3,3,2,0,0,0,0), +(3741,41511,37702,37701,38426,0,0,0,0,3,4,4,2,0,0,0,0), +(3742,41511,37702,37701,38426,0,0,0,0,3,4,4,2,0,0,0,0), +(3743,41511,37702,37701,38426,0,0,0,0,3,4,4,2,0,0,0,0), +(3744,41511,37702,37701,38426,0,0,0,0,4,5,5,2,0,0,0,0), +(3745,41511,37702,37701,38426,0,0,0,0,4,5,5,2,0,0,0,0), +(3746,41511,37702,37701,38426,0,0,0,0,4,5,5,2,0,0,0,0), +(3747,34054,34055,34052,34057,0,0,0,0,20,4,4,6,0,0,0,0), +(3748,34054,34055,34052,34057,0,0,0,0,12,4,4,10,0,0,0,0), +(3749,0,34055,34052,34057,0,0,0,0,0,6,6,6,0,0,0,0), +(3750,34054,34055,0,0,0,0,0,0,8,1,0,0,0,0,0,0), +(3751,41163,36930,36933,0,0,0,0,0,2,2,1,0,0,0,0,0), +(3752,33567,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(3753,0,44144,44145,44146,44147,0,0,0,0,1,1,1,1,0,0,0), +(3754,44165,0,44145,44146,44147,0,0,0,1,0,1,1,1,0,0,0), +(3755,44165,44144,0,44146,44147,0,0,0,1,1,0,1,1,0,0,0), +(3756,44165,44144,44145,0,44147,0,0,0,1,1,1,0,1,0,0,0), +(3757,44165,44144,44145,44146,0,0,0,0,1,1,1,1,0,0,0,0), +(3758,0,44154,44155,44156,44157,0,0,0,0,1,1,1,1,0,0,0), +(3759,44143,0,44155,44156,44157,0,0,0,1,0,1,1,1,0,0,0), +(3760,44143,44154,0,44156,44157,0,0,0,1,1,0,1,1,0,0,0), +(3761,44143,44154,44155,0,44157,0,0,0,1,1,1,0,1,0,0,0), +(3762,44143,44154,44155,44156,0,0,0,0,1,1,1,1,0,0,0,0), +(3763,0,44261,44262,44263,44264,44265,44266,44267,0,1,1,1,1,1,1,1), +(3764,44260,0,44262,44263,44264,44265,44266,44267,1,0,1,1,1,1,1,1), +(3765,44260,44261,0,44263,44264,44265,44266,44267,1,1,0,1,1,1,1,1), +(3766,44260,44261,44262,0,44264,44265,44266,44267,1,1,1,0,1,1,1,1), +(3767,44260,44261,44262,44263,0,44265,44266,44267,1,1,1,1,0,1,1,1), +(3768,44260,44261,44262,44263,44264,0,44266,44267,1,1,1,1,1,0,1,1), +(3769,44260,44261,44262,44263,44264,44265,0,44267,1,1,1,1,1,1,0,1), +(3770,44260,44261,44262,44263,44264,44265,44266,0,1,1,1,1,1,1,1,0), +(3771,0,44269,44270,44271,44272,44273,44274,44275,0,1,1,1,1,1,1,1), +(3772,44268,0,44270,44271,44272,44273,44274,44275,1,0,1,1,1,1,1,1), +(3773,44268,44269,0,44271,44272,44273,44274,44275,1,1,0,1,1,1,1,1), +(3774,44268,44269,44270,0,44272,44273,44274,44275,1,1,1,0,1,1,1,1), +(3775,44268,44269,44270,44271,0,44273,44274,44275,1,1,1,1,0,1,1,1), +(3776,44268,44269,44270,44271,44272,0,44274,44275,1,1,1,1,1,0,1,1), +(3777,44268,44269,44270,44271,44272,44273,0,44275,1,1,1,1,1,1,0,1), +(3778,44268,44269,44270,44271,44272,44273,44274,0,1,1,1,1,1,1,1,0), +(3779,0,44278,44279,44280,44281,44282,44284,44285,0,1,1,1,1,1,1,1), +(3780,44277,0,44279,44280,44281,44282,44284,44285,1,0,1,1,1,1,1,1), +(3781,44277,44278,0,44280,44281,44282,44284,44285,1,1,0,1,1,1,1,1), +(3782,44277,44278,44279,0,44281,44282,44284,44285,1,1,1,0,1,1,1,1), +(3783,44277,44278,44279,44280,0,44282,44284,44285,1,1,1,1,0,1,1,1), +(3784,44277,44278,44279,44280,44281,0,44284,44285,1,1,1,1,1,0,1,1), +(3785,44277,44278,44279,44280,44281,44282,0,44285,1,1,1,1,1,1,0,1), +(3786,44277,44278,44279,44280,44281,44282,44284,0,1,1,1,1,1,1,1,0), +(3787,0,44287,44288,44289,44290,44291,44292,44293,0,1,1,1,1,1,1,1), +(3788,44286,0,44288,44289,44290,44291,44292,44293,1,0,1,1,1,1,1,1), +(3789,44286,44287,0,44289,44290,44291,44292,44293,1,1,0,1,1,1,1,1), +(3790,44286,44287,44288,0,44290,44291,44292,44293,1,1,1,0,1,1,1,1), +(3791,44286,44287,44288,44289,0,44291,44292,44293,1,1,1,1,0,1,1,1), +(3792,44286,44287,44288,44289,44290,0,44292,44293,1,1,1,1,1,0,1,1), +(3793,44286,44287,44288,44289,44290,44291,0,44293,1,1,1,1,1,1,0,1), +(3794,44286,44287,44288,44289,44290,44291,44292,0,1,1,1,1,1,1,1,0), +(3795,44301,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0), +(3796,10648,43120,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3797,43126,39502,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3798,36913,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(3799,36904,36907,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(3800,36901,36903,3371,0,0,0,0,0,1,2,1,0,0,0,0,0), +(3801,36906,37704,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(3802,36901,36903,3371,0,0,0,0,0,1,2,1,0,0,0,0,0), +(3803,19227,19230,19231,0,19233,19234,19235,19236,1,1,1,0,1,1,1,1), +(3804,19227,0,19231,19232,19233,19234,19235,19236,1,0,1,1,1,1,1,1), +(3805,19227,19230,0,19232,19233,19234,19235,19236,1,1,0,1,1,1,1,1), +(3806,19227,19230,19231,19232,0,19234,19235,19236,1,1,1,1,0,1,1,1), +(3807,19227,19230,19231,19232,19233,0,19235,19236,1,1,1,1,1,0,1,1), +(3808,19227,19230,19231,19232,19233,19234,0,19236,1,1,1,1,1,1,0,1), +(3809,19227,19230,19231,19232,19233,19234,19235,0,1,1,1,1,1,1,1,0), +(3810,36904,3371,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(3811,37921,37704,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(3812,37921,36907,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(3813,19268,0,19270,19271,19272,19273,19274,19275,1,0,1,1,1,1,1,1), +(3814,19268,19269,0,19271,19272,19273,19274,19275,1,1,0,1,1,1,1,1), +(3815,19268,19269,19270,0,19272,19273,19274,19275,1,1,1,0,1,1,1,1), +(3816,19268,19269,19270,19271,0,19273,19274,19275,1,1,1,1,0,1,1,1), +(3817,19268,19269,19270,19271,19272,0,19274,19275,1,1,1,1,1,0,1,1), +(3818,19268,19269,19270,19271,19272,19273,0,19275,1,1,1,1,1,1,0,1), +(3819,19268,19269,19270,19271,19272,19273,19274,0,1,1,1,1,1,1,1,0), +(3820,19276,0,19279,19280,19281,19282,19283,19284,1,0,1,1,1,1,1,1), +(3821,19276,19278,0,19280,19281,19282,19283,19284,1,1,0,1,1,1,1,1), +(3822,19276,19278,19279,0,19281,19282,19283,19284,1,1,1,0,1,1,1,1), +(3823,19276,19278,19279,19280,0,19282,19283,19284,1,1,1,1,0,1,1,1), +(3824,19276,19278,19279,19280,19281,0,19283,19284,1,1,1,1,1,0,1,1), +(3825,19276,19278,19279,19280,19281,19282,0,19284,1,1,1,1,1,1,0,1), +(3826,19276,19278,19279,19280,19281,19282,19283,0,1,1,1,1,1,1,1,0), +(3827,19258,0,19260,19261,19262,19263,19264,19265,1,0,1,1,1,1,1,1), +(3828,19258,19259,0,19261,19262,19263,19264,19265,1,1,0,1,1,1,1,1), +(3829,19258,19259,19260,0,19262,19263,19264,19265,1,1,1,0,1,1,1,1), +(3830,19258,19259,19260,19261,0,19263,19264,19265,1,1,1,1,0,1,1,1), +(3831,19258,19259,19260,19261,19262,0,19264,19265,1,1,1,1,1,0,1,1), +(3832,19258,19259,19260,19261,19262,19263,0,19265,1,1,1,1,1,1,0,1), +(3833,19258,19259,19260,19261,19262,19263,19264,0,1,1,1,1,1,1,1,0), +(3834,31882,0,31888,31885,31884,31887,31886,31883,1,0,1,1,1,1,1,1), +(3835,31882,31889,0,31885,31884,31887,31886,31883,1,1,0,1,1,1,1,1), +(3836,31882,31889,31888,0,31884,31887,31886,31883,1,1,1,0,1,1,1,1), +(3837,31882,31889,31888,31885,0,31887,31886,31883,1,1,1,1,0,1,1,1), +(3838,31882,31889,31888,31885,31884,0,31886,31883,1,1,1,1,1,0,1,1), +(3839,31882,31889,31888,31885,31884,31887,0,31883,1,1,1,1,1,1,0,1), +(3840,31882,31889,31888,31885,31884,31887,31886,0,1,1,1,1,1,1,1,0), +(3841,36901,35625,36908,0,0,0,0,0,20,2,1,0,0,0,0,0), +(3842,31901,0,31908,31904,31903,31906,31905,31902,1,0,1,1,1,1,1,1), +(3843,31901,31909,0,31904,31903,31906,31905,31902,1,1,0,1,1,1,1,1), +(3844,31901,31909,31908,0,31903,31906,31905,31902,1,1,1,0,1,1,1,1), +(3845,31901,31909,31908,31904,0,31906,31905,31902,1,1,1,1,0,1,1,1), +(3846,31901,31909,31908,31904,31903,0,31905,31902,1,1,1,1,1,0,1,1), +(3847,31901,31909,31908,31904,31903,31906,0,31902,1,1,1,1,1,1,0,1), +(3848,37921,40195,36908,0,0,0,0,0,20,12,1,0,0,0,0,0), +(3849,31901,31909,31908,31904,31903,31906,31905,0,1,1,1,1,1,1,1,0), +(3850,36903,36904,36908,0,0,0,0,0,15,15,1,0,0,0,0,0), +(3851,31910,0,31917,31913,31912,31916,31915,31911,1,0,1,1,1,1,1,1), +(3852,31910,31918,0,31913,31912,31916,31915,31911,1,1,0,1,1,1,1,1), +(3853,31910,31918,31917,0,31912,31916,31915,31911,1,1,1,0,1,1,1,1), +(3854,31910,31918,31917,31913,0,31916,31915,31911,1,1,1,1,0,1,1,1), +(3855,31910,31918,31917,31913,31912,0,31915,31911,1,1,1,1,1,0,1,1), +(3856,31910,31918,31917,31913,31912,31916,0,31911,1,1,1,1,1,1,0,1), +(3857,31910,31918,31917,31913,31912,31916,31915,0,1,1,1,1,1,1,1,0), +(3858,31892,0,31899,31895,31894,31898,31896,31893,1,0,1,1,1,1,1,1), +(3859,31892,31900,0,31895,31894,31898,31896,31893,1,1,0,1,1,1,1,1), +(3860,31892,31900,31899,0,31894,31898,31896,31893,1,1,1,0,1,1,1,1), +(3861,31892,31900,31899,31895,0,31898,31896,31893,1,1,1,1,0,1,1,1), +(3862,31892,31900,31899,31895,31894,0,31896,31893,1,1,1,1,1,0,1,1), +(3863,31892,31900,31899,31895,31894,31898,0,31893,1,1,1,1,1,1,0,1), +(3864,31892,31900,31899,31895,31894,31898,31896,0,1,1,1,1,1,1,1,0), +(3865,44434,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(3866,38561,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(3867,38558,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(3868,33568,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(3869,33568,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0), +(3870,38425,37705,0,0,0,0,0,0,4,5,0,0,0,0,0,0), +(3871,38425,37705,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(3872,38557,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0), +(3873,34054,34056,0,0,0,0,0,0,4,4,0,0,0,0,0,0), +(3874,33568,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(3875,33568,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0), +(3876,34054,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(3877,38425,37703,0,0,0,0,0,0,4,5,0,0,0,0,0,0), +(3878,38425,37703,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(3879,34054,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(3880,41741,34054,34056,0,22463,0,0,0,1,8,4,0,1,0,0,0), +(3881,41745,34054,34055,34052,22463,0,0,0,1,12,4,2,1,0,0,0), +(3882,38558,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0), +(3883,34054,34056,0,0,0,0,0,0,2,4,0,0,0,0,0,0), +(3884,33568,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(3885,34054,37705,0,0,0,0,0,0,8,1,0,0,0,0,0,0), +(3886,33568,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0), +(3887,38425,37705,0,0,0,0,0,0,4,5,0,0,0,0,0,0), +(3888,38425,37705,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(3889,38557,37703,0,0,0,0,0,0,30,2,0,0,0,0,0,0), +(3890,33568,37700,0,0,0,0,0,0,16,4,0,0,0,0,0,0), +(3891,44128,36860,35627,43102,0,0,0,0,2,6,4,1,0,0,0,0), +(3892,44128,38558,43102,0,0,0,0,0,2,40,1,0,0,0,0,0), +(3893,38425,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(3894,38557,38425,0,0,0,0,0,0,20,2,0,0,0,0,0,0), +(3895,38558,38425,0,0,0,0,0,0,20,2,0,0,0,0,0,0), +(3896,38425,35623,0,0,0,0,0,0,15,1,0,0,0,0,0,0), +(3897,38425,36860,0,0,0,0,0,0,12,2,0,0,0,0,0,0), +(3898,38557,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0), +(3899,34054,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(3900,38425,35627,0,0,0,0,0,0,14,2,0,0,0,0,0,0), +(3901,38425,35627,0,0,0,0,0,0,10,2,0,0,0,0,0,0), +(3902,38425,35623,0,0,0,0,0,0,12,2,0,0,0,0,0,0), +(3903,34054,34055,34052,0,0,0,0,0,8,2,2,0,0,0,0,0), +(3904,38425,35622,0,0,0,0,0,0,10,2,0,0,0,0,0,0), +(3905,0,38561,0,0,0,0,0,0,0,40,0,0,0,0,0,0), +(3906,34054,34055,34052,0,0,0,0,0,20,4,1,0,0,0,0,0), +(3907,38425,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0), +(3908,38558,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0), +(3909,44460,44461,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3910,44459,44461,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3911,44459,44460,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3912,34054,34055,0,34057,0,0,0,0,40,6,0,6,0,0,0,0), +(3913,0,34052,34057,0,0,0,0,0,0,4,4,0,0,0,0,0), +(3914,38425,35623,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3915,38425,35623,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(3916,38425,35623,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3917,38425,35623,0,0,0,0,0,0,8,1,0,0,0,0,0,0), +(3918,38425,35623,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(3919,38425,35623,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(3920,34054,34055,34052,34057,0,0,0,0,10,2,2,4,0,0,0,0), +(3921,38425,35623,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3922,38425,35623,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(3923,34054,0,34052,34057,0,0,0,0,30,0,6,6,0,0,0,0), +(3924,38425,35622,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3925,38425,35622,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(3926,38425,35622,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3927,38425,35622,0,0,0,0,0,0,8,1,0,0,0,0,0,0), +(3928,38425,35622,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(3929,38425,35622,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(3930,38425,35622,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3931,38425,35622,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(3932,38425,35623,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3933,38425,35623,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(3934,38425,35623,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3935,38425,35623,0,0,0,0,0,0,8,1,0,0,0,0,0,0), +(3936,38425,35623,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(3937,38425,35623,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(3938,38425,35623,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3939,38425,35623,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(3940,38425,35622,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3941,38425,35622,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(3942,38425,35622,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3943,38425,35622,0,0,0,0,0,0,8,1,0,0,0,0,0,0), +(3944,38425,35622,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(3945,38425,35622,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(3946,38425,35622,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(3947,38425,35622,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(3948,38425,35622,35623,43102,0,0,0,0,12,6,6,1,0,0,0,0), +(3949,38425,35622,35623,43102,0,0,0,0,10,5,5,1,0,0,0,0), +(3950,38425,35622,43102,0,0,0,0,0,12,12,1,0,0,0,0,0), +(3951,38425,35622,43102,0,0,0,0,0,10,10,1,0,0,0,0,0), +(3952,38425,36860,35627,43102,0,0,0,0,10,6,6,1,0,0,0,0), +(3953,38425,36860,35627,43102,0,0,0,0,10,5,5,1,0,0,0,0), +(3954,38425,35625,35622,43102,0,0,0,0,12,6,6,1,0,0,0,0), +(3955,38425,35625,35622,43102,0,0,0,0,10,5,5,1,0,0,0,0), +(3956,0,34055,34052,0,0,0,0,0,0,4,4,0,0,0,0,0), +(3957,34054,34055,34052,0,0,0,0,0,6,6,1,0,0,0,0,0), +(3958,44479,44478,44476,0,0,0,0,0,1,1,1,0,0,0,0,0), +(3959,44477,44478,44476,0,0,0,0,0,1,1,1,0,0,0,0,0), +(3960,44477,44479,44476,0,0,0,0,0,1,1,1,0,0,0,0,0), +(3961,44477,44479,44478,0,0,0,0,0,1,1,1,0,0,0,0,0), +(3962,44480,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3964,37663,39681,44128,44499,44501,44500,0,0,12,40,2,1,8,1,0,0), +(3965,41163,43102,36860,35627,41146,40533,0,0,10,1,12,12,3,1,0,0), +(3966,5024,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3967,36901,36903,36907,0,3371,0,0,0,10,10,4,0,4,0,0,0), +(3968,21840,23112,22445,8343,0,0,0,0,6,4,4,5,0,0,0,0), +(3969,41511,36930,2604,4341,42253,0,0,0,12,4,4,2,4,0,0,0), +(3970,41594,36783,42253,0,0,0,0,0,6,4,4,0,0,0,0,0), +(3971,41593,36783,42253,0,0,0,0,0,6,4,4,0,0,0,0,0), +(3972,41595,36783,42253,0,0,0,0,0,6,4,4,0,0,0,0,0), +(3973,41511,36860,35622,38426,43102,0,0,0,4,2,2,2,1,0,0,0), +(3974,41511,36860,35622,38426,43102,0,0,0,6,3,3,3,1,0,0,0), +(3975,41511,36860,35622,38426,43102,0,0,0,4,2,2,2,1,0,0,0), +(3976,38425,36860,35622,38558,43102,0,0,0,10,3,3,8,1,0,0,0), +(3977,38425,36860,35622,38558,43102,0,0,0,8,2,2,4,1,0,0,0), +(3978,38425,36860,35622,38558,43102,0,0,0,8,2,2,4,1,0,0,0), +(3979,38425,36860,35622,38557,43102,0,0,0,10,3,3,8,1,0,0,0), +(3980,38425,36860,35622,38557,43102,0,0,0,8,2,2,4,1,0,0,0), +(3981,38425,36860,35622,38557,43102,0,0,0,8,2,2,4,1,0,0,0), +(3982,36913,36860,35622,43102,0,0,0,0,16,3,3,1,0,0,0,0), +(3983,36913,36860,35622,43102,0,0,0,0,12,2,2,1,0,0,0,0), +(3984,36913,36860,35622,43102,0,0,0,0,12,2,2,1,0,0,0,0), +(3985,43127,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3986,43127,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3987,43127,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3988,43127,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(3989,43126,43127,39502,0,0,0,0,0,3,1,5,0,0,0,0,0), +(3990,39469,39354,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(3991,39683,39681,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(3992,36913,33568,35627,0,0,0,0,0,8,2,1,0,0,0,0,0), +(3993,36913,33568,35627,0,0,0,0,0,8,2,1,0,0,0,0,0), +(3994,36913,33568,35627,0,0,0,0,0,8,2,1,0,0,0,0,0), +(3995,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(3996,34053,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(3998,46784,44853,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(3999,44834,44853,44835,0,0,0,0,0,1,2,1,0,0,0,0,0), +(4000,44856,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(4001,44854,44853,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(4002,30816,44835,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(4003,44855,44853,44835,0,0,0,0,0,1,1,1,0,0,0,0,0), +(4004,43126,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4005,38425,35623,35622,43102,0,0,0,0,10,5,5,1,0,0,0,0), +(4006,38425,35623,35622,43102,0,0,0,0,12,6,6,1,0,0,0,0), +(4007,41163,35627,0,0,0,0,0,0,4,4,0,0,0,0,0,0), +(4008,39970,0,3371,0,0,0,0,0,4,0,1,0,0,0,0,0), +(4009,43102,36923,36926,36932,0,0,0,0,1,1,1,1,0,0,0,0), +(4010,34055,0,34057,0,0,0,0,0,4,0,1,0,0,0,0,0), +(4011,34052,37663,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(4012,41163,38425,36933,35624,43102,0,0,0,8,4,2,4,1,0,0,0), +(4013,43011,43007,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(4014,41814,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(4015,44958,3371,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4016,44128,35624,43102,0,0,0,0,0,2,4,1,0,0,0,0,0), +(4017,45000,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(4018,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4019,45038,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0), +(4020,11754,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4021,34054,34052,34057,0,0,0,0,0,40,6,6,0,0,0,0,0), +(4022,34054,34055,0,0,0,0,0,0,12,2,0,0,0,0,0,0), +(4023,0,37663,34054,43102,0,0,0,0,0,6,6,2,0,0,0,0), +(4024,37663,0,0,45087,0,0,0,0,5,0,0,6,0,0,0,0), +(4025,37663,0,0,45087,0,0,0,0,5,0,0,6,0,0,0,0), +(4026,37663,0,0,45087,0,0,0,0,5,0,0,6,0,0,0,0), +(4027,37663,0,0,45087,0,0,0,0,5,0,0,6,0,0,0,0), +(4028,37663,0,0,45087,0,0,0,0,5,0,0,6,0,0,0,0), +(4029,37663,0,0,45087,0,0,0,0,5,0,0,6,0,0,0,0), +(4030,0,44128,38557,45087,0,0,0,0,0,3,20,6,0,0,0,0), +(4031,0,44128,38561,45087,0,0,0,0,0,3,20,6,0,0,0,0), +(4032,0,44128,38558,45087,0,0,0,0,0,3,20,6,0,0,0,0), +(4033,0,44128,38557,45087,0,0,0,0,0,3,20,6,0,0,0,0), +(4034,0,44128,35627,45087,0,0,0,0,0,3,4,6,0,0,0,0), +(4035,0,44128,35627,45087,0,0,0,0,0,3,2,6,0,0,0,0), +(4036,38425,44128,0,45087,0,0,0,0,4,3,0,6,0,0,0,0), +(4037,0,44128,38557,45087,0,0,0,0,0,3,20,6,0,0,0,0), +(4038,41595,41593,45087,0,0,0,0,0,4,4,6,0,0,0,0,0), +(4039,41595,41593,45087,0,0,0,0,0,4,4,6,0,0,0,0,0), +(4040,41594,0,45087,0,0,0,0,0,8,0,6,0,0,0,0,0), +(4041,41594,0,45087,0,0,0,0,0,8,0,6,0,0,0,0,0), +(4042,6371,2453,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(4043,4305,0,3182,2321,0,0,0,0,3,0,6,2,0,0,0,0), +(4044,6037,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(4045,11137,11174,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(4046,15994,6037,0,7078,0,0,0,0,4,6,0,6,0,0,0,0), +(4047,33470,0,39682,0,0,0,0,0,12,0,1,0,0,0,0,0), +(4048,36913,35624,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(4049,41594,36908,0,0,0,0,0,0,4,6,0,0,0,0,0,0), +(4050,43126,39502,35627,0,0,0,0,0,5,10,3,0,0,0,0,0), +(4051,43126,39502,35625,0,0,0,0,0,5,10,2,0,0,0,0,0), +(4052,7974,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4053,39774,39354,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4054,39774,39354,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4055,39774,39354,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4056,43116,39354,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4057,43116,39354,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4058,43116,10648,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4059,43116,10648,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4060,43118,10648,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4061,43120,10648,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4062,43126,10648,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4063,43120,39501,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4064,43120,39501,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4065,43122,39501,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4066,43122,39501,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4067,43122,39501,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4068,43122,39501,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4069,43122,39501,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4070,43122,39501,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4071,43122,39501,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4072,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4073,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4074,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4075,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4076,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4077,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4078,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4079,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4080,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4081,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4082,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4083,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4084,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4085,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4086,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4087,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4088,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4089,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4090,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4091,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4092,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4093,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4094,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4095,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4096,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4097,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4098,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4099,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4100,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4101,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4102,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4103,43126,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4104,43126,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4105,43126,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4106,43126,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4107,43126,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4108,43126,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4109,43126,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4110,43126,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4111,43126,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4112,43126,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4113,43126,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4114,43126,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4115,43126,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4116,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4117,45924,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0), +(4118,41805,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(4119,34057,34055,37663,0,0,0,0,0,4,8,1,0,0,0,0,0), +(4120,34057,34054,36918,0,0,0,0,0,4,40,1,0,0,0,0,0), +(4121,33567,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(4122,41163,36933,0,0,0,0,0,0,1,3,0,0,0,0,0,0), +(4123,41163,36924,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(4124,41163,36927,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(4125,41163,36918,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(4126,41511,42253,35624,0,0,0,0,0,4,4,4,0,0,0,0,0), +(4127,41511,42253,35627,0,0,0,0,0,4,4,4,0,0,0,0,0), +(4128,43126,0,0,0,39354,0,0,0,3,0,0,0,1,0,0,0), +(4129,30817,1179,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(4130,46797,44853,44835,0,0,0,0,0,1,1,1,0,0,0,0,0), +(4131,46793,44853,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(4132,46796,44853,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(4133,44834,44853,44835,0,0,0,0,0,1,2,1,0,0,0,0,0), +(4134,30816,44835,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(4135,36934,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4136,36934,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4137,36934,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4138,36928,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4139,36934,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4140,36928,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4141,36928,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4142,36934,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4143,36934,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4144,36934,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4145,36934,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4146,36934,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4147,36934,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4148,36934,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4149,36934,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4150,36934,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4151,36934,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4152,36934,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4153,36934,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4154,36919,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4155,36919,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4156,36919,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4157,36919,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4158,36919,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4159,36922,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4160,36922,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4161,36919,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4162,44837,44839,44840,44836,44838,0,0,0,1,1,1,1,1,0,0,0), +(4163,36925,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4164,36925,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4165,36925,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4166,36925,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4167,36925,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4168,36922,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4169,36919,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4170,36922,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4171,36922,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4172,36922,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4173,3371,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4174,36928,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4175,36928,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4176,36928,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4177,36928,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4178,36928,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4179,36928,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4180,36934,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4181,36928,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4182,36928,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4183,36928,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4184,36934,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4185,36928,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4186,36928,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4187,36928,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4188,36931,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4189,36931,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4190,36931,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4191,36928,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4192,36931,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4193,36928,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4194,36928,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4195,36931,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4196,36928,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4197,36928,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4198,36931,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4199,36931,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4200,36931,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4201,36931,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4202,36931,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4203,36931,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4204,36931,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4205,36931,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4206,36931,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4207,36931,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4208,36931,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4209,36930,35627,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(4210,36860,36918,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(4211,36921,35625,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(4212,35627,36927,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(4213,35623,36924,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(4214,36933,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(4215,47035,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4216,46978,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4217,5176,5175,5178,5177,0,0,0,0,1,1,1,1,0,0,0,0), +(4218,36908,3371,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(4219,41594,36922,47556,0,0,0,0,0,20,2,8,0,0,0,0,0), +(4220,41594,47556,0,0,0,0,0,0,12,4,0,0,0,0,0,0), +(4221,41593,41595,34052,47556,0,0,0,0,8,8,8,8,0,0,0,0), +(4222,41595,36934,36919,36925,47556,0,0,0,8,1,1,1,4,0,0,0), +(4223,38558,35623,34055,44128,47556,0,0,0,40,8,8,8,8,0,0,0), +(4224,0,38558,34057,44128,47556,0,0,0,0,40,4,6,4,0,0,0), +(4225,38557,35622,35625,44128,47556,0,0,0,40,8,8,8,8,0,0,0), +(4226,38557,35622,44128,47556,0,0,0,0,40,8,6,4,0,0,0,0), +(4227,38425,35625,44128,47556,0,0,0,0,24,20,8,8,0,0,0,0), +(4228,38425,35625,44128,47556,0,0,0,0,20,12,6,4,0,0,0,0), +(4229,38425,35627,44128,47556,0,0,0,0,24,20,8,8,0,0,0,0), +(4230,38425,35627,44128,47556,0,0,0,0,20,12,6,4,0,0,0,0), +(4231,37663,35625,36925,47556,0,0,0,0,12,8,2,8,0,0,0,0), +(4232,37663,36913,47556,0,0,0,0,0,8,20,4,0,0,0,0,0), +(4233,37663,41245,47556,0,0,0,0,0,10,4,8,0,0,0,0,0), +(4234,37663,41355,47556,0,0,0,0,0,8,1,4,0,0,0,0,0), +(4235,37663,35625,47556,0,0,0,0,0,10,20,8,0,0,0,0,0), +(4236,37663,35625,47556,0,0,0,0,0,8,12,4,0,0,0,0,0), +(4237,37663,35625,36925,47556,0,0,0,0,12,8,2,8,0,0,0,0), +(4238,37663,36913,47556,0,0,0,0,0,8,20,4,0,0,0,0,0), +(4239,37663,41245,47556,0,0,0,0,0,10,4,8,0,0,0,0,0), +(4240,37663,41355,47556,0,0,0,0,0,8,1,4,0,0,0,0,0), +(4241,37663,35625,47556,0,0,0,0,0,10,20,8,0,0,0,0,0), +(4242,37663,35625,47556,0,0,0,0,0,8,12,4,0,0,0,0,0), +(4243,38558,35623,34055,44128,47556,0,0,0,40,8,8,8,8,0,0,0), +(4244,0,38558,34057,44128,47556,0,0,0,0,40,4,6,4,0,0,0), +(4245,38557,35622,35625,44128,47556,0,0,0,40,8,8,8,8,0,0,0), +(4246,38425,35627,44128,47556,0,0,0,0,20,12,6,4,0,0,0,0), +(4247,38425,35625,44128,47556,0,0,0,0,24,20,8,8,0,0,0,0), +(4248,38425,35625,44128,47556,0,0,0,0,20,12,6,4,0,0,0,0), +(4249,38425,35627,44128,47556,0,0,0,0,24,20,8,8,0,0,0,0), +(4250,38557,35622,44128,47556,0,0,0,0,40,8,6,4,0,0,0,0), +(4251,41594,36922,47556,0,0,0,0,0,20,2,8,0,0,0,0,0), +(4252,41595,36934,36919,36925,47556,0,0,0,8,1,1,1,4,0,0,0), +(4253,41593,41595,34052,47556,0,0,0,0,8,8,8,8,0,0,0,0), +(4254,41594,47556,0,0,0,0,0,0,12,4,0,0,0,0,0,0), +(4255,36913,37702,37705,0,0,0,0,0,6,3,3,0,0,0,0,0), +(4256,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4257,39774,0,0,0,0,0,0,39354,3,0,0,0,0,0,0,1), +(4258,39683,35623,36860,35622,39681,42546,0,0,2,2,2,2,10,5,0,0), +(4259,10726,36913,39681,35622,0,0,0,0,1,12,12,2,0,0,0,0), +(4260,36913,39683,0,0,0,0,0,0,8,1,0,0,0,0,0,0), +(4261,41163,35627,35622,36860,35623,0,0,0,8,2,2,2,2,0,0,0), +(4262,18232,34113,40769,37663,36922,39681,0,0,2,10,20,8,2,30,0,0), +(4263,43126,0,0,0,39502,0,0,0,3,0,0,0,1,0,0,0), +(4264,42225,34054,0,0,0,0,0,0,1,5,0,0,0,0,0,0), +(4268,0,43127,0,0,0,0,0,39502,0,1,0,0,0,0,0,5), +(4269,38425,38557,0,0,0,0,0,0,8,8,0,0,0,0,0,0), +(4270,38425,38561,0,0,0,0,0,0,8,8,0,0,0,0,0,0), +(4271,34057,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4272,49655,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0), +(4273,49718,49740,0,0,0,0,0,0,5,1,1,0,0,0,0,0), +(4274,0,43127,0,0,0,0,0,39502,0,1,0,0,0,0,0,5), +(4275,12359,11176,0,0,0,0,0,0,1,3,0,0,0,0,0,0), +(4276,41595,41593,49908,0,0,0,0,0,10,10,8,0,0,0,0,0), +(4277,41595,41593,49908,0,0,0,0,0,6,6,5,0,0,0,0,0), +(4278,41594,0,49908,0,0,0,0,0,20,0,8,0,0,0,0,0), +(4279,41594,0,49908,0,0,0,0,0,10,0,5,0,0,0,0,0), +(4280,38561,44128,35625,49908,0,0,0,0,20,8,16,8,0,0,0,0), +(4281,38561,44128,35625,49908,0,0,0,0,12,5,10,5,0,0,0,0), +(4282,38558,44128,35627,49908,0,0,0,0,20,8,16,8,0,0,0,0), +(4283,38558,44128,35627,49908,0,0,0,0,12,8,10,5,0,0,0,0), +(4284,38557,44128,35623,49908,0,0,0,0,20,8,16,8,0,0,0,0), +(4285,38557,44128,35623,49908,0,0,0,0,12,5,10,5,0,0,0,0), +(4286,38557,44128,35624,49908,0,0,0,0,20,8,16,8,0,0,0,0), +(4287,38557,44128,35624,49908,0,0,0,0,12,8,10,5,0,0,0,0), +(4288,37663,35623,0,49908,0,0,0,0,12,20,0,8,0,0,0,0), +(4289,37663,35624,0,49908,0,0,0,0,8,12,0,5,0,0,0,0), +(4290,37663,35627,0,49908,0,0,0,0,12,20,0,8,0,0,0,0), +(4291,37663,35622,36860,49908,0,0,0,0,8,6,6,5,0,0,0,0), +(4292,37663,35624,0,49908,0,0,0,0,12,20,0,8,0,0,0,0), +(4293,37663,35624,0,49908,0,0,0,0,8,12,0,5,0,0,0,0), +(4294,49766,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4295,43126,0,0,0,39502,0,0,0,3,0,0,0,1,0,0,0), +(4296,36913,35624,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(4297,43124,39502,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(4298,43126,0,0,0,39502,0,0,0,3,0,0,0,1,0,0,0), +(4299,34054,44958,0,0,0,0,0,0,1,3,0,0,0,0,0,0), +(4301,37701,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(4302,37703,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(4304,52177,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4305,52177,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4306,52177,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4307,52177,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4309,52178,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4310,52178,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4311,52178,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4312,52179,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4313,52179,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4314,52179,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4315,52179,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4316,52179,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4317,52180,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4318,52180,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4319,52180,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4320,52180,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4321,52180,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4322,52180,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4323,52180,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4324,52180,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4325,52180,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4326,52180,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4327,52180,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4328,52181,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4329,52181,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4330,52181,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4331,52181,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4332,52181,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4333,52181,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4334,52181,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4335,52181,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4336,52181,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4337,52181,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4338,52181,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4339,52181,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4340,52181,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4341,52182,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4342,52182,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4344,52182,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4345,52182,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4346,52182,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4347,52182,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4348,52182,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4349,52182,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4351,52190,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(4353,41594,41595,41593,43102,0,0,0,0,1,1,1,4,0,0,0,0), +(4360,159,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4361,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4384,18562,12360,17010,18567,0,0,0,0,1,10,1,3,0,0,0,0), +(4402,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4415,3466,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(4416,3466,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(4417,0,38426,0,0,0,0,0,0,0,1,0,0,0,0,0,0), +(4418,36913,35624,35622,35627,0,0,0,0,4,1,1,1,0,0,0,0), +(4419,0,38426,0,0,0,0,0,0,0,1,0,0,0,0,0,0), +(4420,0,38426,0,0,0,0,0,0,0,1,0,0,0,0,0,0), +(4421,38426,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4422,38426,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4430,37663,39681,44128,44499,44501,44500,0,0,12,40,2,1,8,1,0,0), +(4431,44886,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(4433,45051,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4434,45571,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(4437,46315,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(4438,46365,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0), +(4439,46366,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4440,34259,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0), +(4441,46702,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(4442,47044,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(4443,47044,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(4444,47044,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(4445,48106,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0), +(4446,48128,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4447,41510,34054,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(4448,48857,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0), +(4449,48943,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0), +(4450,48953,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0), +(4451,49102,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(4452,0,34052,34057,0,0,0,0,0,0,4,4,0,0,0,0,0), +(4453,49194,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(4454,49211,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4455,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4456,49769,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4457,46856,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4458,50288,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4459,50288,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4461,51780,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4462,51794,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4463,51781,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4464,52013,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4465,52177,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4466,52178,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4467,52182,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4468,52182,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4469,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4470,52190,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4471,52190,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4472,52190,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4473,52190,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4474,52190,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4475,52191,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4476,52191,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4477,52191,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4478,52191,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4479,52195,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4480,52195,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4481,52195,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4482,52195,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4483,52195,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4484,52194,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4485,52194,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4486,52194,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4487,52194,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4488,52194,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4489,52194,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4490,52194,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4491,52194,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4492,52194,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4493,52194,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4494,52194,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4495,52193,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4496,52193,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4497,52193,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4498,52193,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4499,52193,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4500,52193,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4501,52193,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4502,52193,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4503,52193,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4504,52193,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4505,52193,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4506,52193,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4507,52193,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4508,52192,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4509,52192,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4510,52192,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4511,52192,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4512,52192,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4513,52192,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4514,52192,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4515,52192,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4516,52192,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4517,52192,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4518,52196,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4519,52196,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4520,52196,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4521,52196,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4522,52196,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4523,52196,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4524,52196,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4525,52196,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4526,52196,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4527,52196,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4528,52196,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4529,52196,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4530,52196,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4531,52196,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4532,52303,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4533,52303,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4534,52303,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4535,52303,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4536,52303,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4537,52303,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4538,52303,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4539,52303,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4540,52303,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4541,52303,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4542,52303,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4543,52303,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4544,52303,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4545,52177,52179,52181,52182,52180,52178,0,0,3,3,3,3,3,3,0,0), +(4546,52188,52182,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(4547,52188,52181,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(4548,52188,52179,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(4549,52188,52180,0,0,0,0,0,0,1,2,0,0,0,0,0,0), +(4550,52186,52196,52194,52328,0,0,0,0,4,4,4,75,0,0,0,0), +(4551,52186,52196,52193,52325,0,0,0,0,4,4,4,75,0,0,0,0), +(4552,52186,52196,52192,52329,0,0,0,0,4,4,4,75,0,0,0,0), +(4553,52186,52196,52195,52326,0,0,0,0,4,4,4,75,0,0,0,0), +(4554,52186,52196,52190,52325,0,0,0,0,4,4,4,75,0,0,0,0), +(4555,52186,52196,52191,52327,0,0,0,0,4,4,4,75,0,0,0,0), +(4556,52186,52196,52194,52328,0,0,0,0,4,4,4,75,0,0,0,0), +(4557,52186,52196,52195,52326,0,0,0,0,4,4,4,75,0,0,0,0), +(4558,52177,52188,0,0,0,0,0,0,3,3,0,0,0,0,0,0), +(4559,52195,52194,52192,52193,52191,52190,0,0,1,1,1,1,1,1,0,0), +(4560,52180,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4561,58480,52196,52555,52192,0,0,0,0,2,2,8,2,0,0,0,0), +(4562,52186,52191,0,0,0,0,0,0,6,1,0,0,0,0,0,0), +(4563,52190,52186,52325,0,0,0,0,0,3,2,50,0,0,0,0,0), +(4564,52191,52186,52326,0,0,0,0,0,3,2,50,0,0,0,0,0), +(4565,52195,52186,52329,0,0,0,0,0,3,2,50,0,0,0,0,0), +(4566,52327,0,52186,0,0,0,0,0,40,0,4,0,0,0,0,0), +(4567,52327,0,52186,0,0,0,0,0,40,0,4,0,0,0,0,0), +(4568,52327,0,52186,0,0,0,0,0,40,0,4,0,0,0,0,0), +(4569,52327,0,52186,0,0,0,0,0,40,0,4,0,0,0,0,0), +(4570,52327,0,52186,0,0,0,0,0,40,0,4,0,0,0,0,0), +(4571,52555,52718,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(4572,52718,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(4573,52720,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(4574,52555,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(4575,0,52718,0,0,0,0,0,0,0,2,0,0,0,0,0,0), +(4576,52555,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(4577,52555,52718,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(4578,52555,52719,0,0,0,0,0,0,11,3,0,0,0,0,0,0), +(4579,52555,52719,0,0,0,0,0,0,4,6,0,0,0,0,0,0), +(4580,52555,52718,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(4581,52555,52719,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(4582,52555,52718,0,0,0,0,0,0,5,1,0,0,0,0,0,0), +(4583,52555,52718,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(4584,52555,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(4585,52719,52327,0,0,0,0,0,0,1,15,0,0,0,0,0,0), +(4586,52555,52719,52721,0,0,0,0,0,7,2,1,0,0,0,0,0), +(4587,52555,52719,0,0,0,0,0,0,3,2,0,0,0,0,0,0), +(4588,52555,52719,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(4589,52555,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0), +(4590,52721,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4591,52721,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4592,52721,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4593,52721,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4594,52555,52719,0,0,0,0,0,0,5,2,0,0,0,0,0,0), +(4595,52721,52328,0,0,0,0,0,0,6,6,0,0,0,0,0,0), +(4596,52555,52719,52721,52329,0,0,0,0,9,3,3,3,0,0,0,0), +(4597,52555,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0), +(4598,52719,52328,0,0,0,0,0,0,5,1,0,0,0,0,0,0), +(4599,52555,52719,0,0,0,0,0,0,8,2,0,0,0,0,0,0), +(4600,52555,52719,0,0,0,0,0,0,10,2,0,0,0,0,0,0), +(4601,52555,52719,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(4602,52555,52719,0,0,0,0,0,0,8,3,0,0,0,0,0,0), +(4603,52555,52719,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(4604,52555,52719,58094,0,0,0,0,0,2,2,1,0,0,0,0,0), +(4605,52555,52719,0,0,0,0,0,0,9,3,0,0,0,0,0,0), +(4606,52555,52719,0,0,0,0,0,0,10,3,0,0,0,0,0,0), +(4607,52555,52719,0,0,0,0,0,0,4,6,0,0,0,0,0,0), +(4608,52555,52719,0,0,0,0,0,0,9,4,0,0,0,0,0,0), +(4609,52555,52721,52722,0,0,0,0,0,14,8,4,0,0,0,0,0), +(4610,52719,52721,52722,0,0,0,0,0,4,6,6,0,0,0,0,0), +(4611,52555,52719,52721,52722,0,0,0,0,6,5,5,5,0,0,0,0), +(4612,0,52722,0,0,0,0,0,0,0,5,0,0,0,0,0,0), +(4613,52555,52719,52721,52722,0,0,0,0,15,3,2,1,0,0,0,0), +(4614,52721,52722,0,0,0,0,0,0,3,3,0,0,0,0,0,0), +(4615,52555,52721,52722,0,0,0,0,0,10,4,2,0,0,0,0,0), +(4616,52555,52719,52721,52722,0,0,0,0,5,7,2,1,0,0,0,0), +(4617,0,52719,52721,52722,0,0,0,0,0,10,2,1,0,0,0,0), +(4618,52555,52719,52722,0,0,0,0,0,4,8,2,0,0,0,0,0), +(4619,52555,52719,52722,0,0,0,0,0,10,5,2,0,0,0,0,0), +(4620,52555,52719,52721,52722,0,0,0,0,12,4,2,1,0,0,0,0), +(4621,34259,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0), +(4622,52977,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(4623,52183,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(4624,52185,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(4625,52186,52327,0,0,0,0,0,0,10,4,0,0,0,0,0,0), +(4626,53010,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4627,53010,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(4628,53050,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(4629,53010,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(4630,54439,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4631,53643,52328,0,0,0,0,0,0,8,30,0,0,0,0,0,0), +(4632,53643,52327,0,0,0,0,0,0,8,30,0,0,0,0,0,0), +(4634,53643,52329,0,0,0,0,0,0,8,30,0,0,0,0,0,0), +(4635,53643,52325,0,0,0,0,0,0,8,30,0,0,0,0,0,0), +(4636,53643,52326,0,0,0,0,0,0,8,30,0,0,0,0,0,0), +(4637,38426,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(4638,38426,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(4639,38426,52329,0,0,0,0,0,0,3,3,0,0,0,0,0,0), +(4640,38426,52326,0,0,0,0,0,0,3,3,0,0,0,0,0,0), +(4641,38426,52325,0,0,0,0,0,0,3,3,0,0,0,0,0,0), +(4642,53010,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0), +(4643,53010,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(4644,53643,38426,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(4645,53643,38426,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(4646,53643,52325,0,0,0,0,0,0,3,6,0,0,0,0,0,0), +(4647,53643,38426,0,0,0,0,0,0,3,2,0,0,0,0,0,0), +(4648,53643,38426,0,0,0,0,0,0,3,2,0,0,0,0,0,0), +(4649,53643,52325,0,0,0,0,0,0,7,4,0,0,0,0,0,0), +(4650,53643,38426,0,0,0,0,0,0,3,2,0,0,0,0,0,0), +(4651,53643,52326,0,0,0,0,0,0,3,6,0,0,0,0,0,0), +(4652,53643,38426,0,0,0,0,0,0,3,2,0,0,0,0,0,0), +(4653,53643,52325,0,0,0,0,0,0,8,5,0,0,0,0,0,0), +(4654,53643,38426,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(4655,53643,38426,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(4656,53643,52326,0,0,0,0,0,0,9,5,0,0,0,0,0,0), +(4657,53643,38426,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(4658,53643,38426,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(4659,53643,38426,0,0,0,0,0,0,4,2,0,0,0,0,0,0), +(4660,53643,52555,0,0,0,0,0,0,15,15,0,0,0,0,0,0), +(4661,53643,52555,34055,34052,0,0,0,0,9,8,4,1,0,0,0,0), +(4662,53643,52326,0,0,0,0,0,0,15,6,0,0,0,0,0,0), +(4663,53643,38426,0,0,0,0,0,0,6,2,0,0,0,0,0,0), +(4664,53643,52329,0,0,0,0,0,0,20,40,0,0,0,0,0,0), +(4665,53643,52325,52328,0,0,0,0,0,6,3,3,0,0,0,0,0), +(4666,53643,52325,52326,0,0,0,0,0,6,4,4,0,0,0,0,0), +(4667,53643,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(4668,53643,52325,38426,52078,0,0,0,0,8,8,8,1,0,0,0,0), +(4669,54440,2325,2605,2321,0,0,0,0,4,1,1,4,0,0,0,0), +(4670,53643,52325,52328,0,0,0,0,0,6,3,3,0,0,0,0,0), +(4671,53643,52326,52325,0,0,0,0,0,6,3,3,0,0,0,0,0), +(4672,53643,52325,52328,0,0,0,0,0,10,4,4,0,0,0,0,0), +(4673,53643,52326,52325,0,0,0,0,0,10,4,4,0,0,0,0,0), +(4674,53643,52325,52326,0,0,0,0,0,10,4,4,0,0,0,0,0), +(4675,53643,52326,52325,0,0,0,0,0,10,4,4,0,0,0,0,0), +(4676,53643,52325,52328,0,0,0,0,0,10,4,4,0,0,0,0,0), +(4677,53643,52326,52325,0,0,0,0,0,10,4,4,0,0,0,0,0), +(4678,54440,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(4679,54440,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(4680,54440,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(4681,54440,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0), +(4682,53643,52325,52328,0,0,0,0,0,10,4,4,0,0,0,0,0), +(4683,53643,52325,52328,0,0,0,0,0,8,4,4,0,0,0,0,0), +(4684,53643,52325,52328,0,0,0,0,0,10,4,4,0,0,0,0,0), +(4685,53643,52326,52325,0,0,0,0,0,10,4,4,0,0,0,0,0), +(4686,53643,52326,52325,0,0,0,0,0,10,4,4,0,0,0,0,0), +(4687,53643,52326,52325,0,0,0,0,0,10,4,4,0,0,0,0,0), +(4688,54440,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0), +(4689,54440,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4690,54440,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4691,54615,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(4692,54439,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4693,54439,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4694,54849,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(4695,0,65365,18567,0,0,0,0,0,0,3,1,0,0,0,0,0), +(4696,0,65365,0,0,0,0,0,0,0,3,0,0,0,0,0,0), +(4697,65365,52327,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(4698,0,65365,0,0,0,0,0,0,0,5,0,0,0,0,0,0), +(4699,65365,52186,52327,0,0,0,0,0,5,15,10,0,0,0,0,0), +(4700,65365,52186,0,0,0,0,0,0,2,10,0,0,0,0,0,0), +(4701,65365,52186,52327,0,0,0,0,0,4,15,6,0,0,0,0,0), +(4702,65365,52186,0,0,0,0,0,0,4,6,0,0,0,0,0,0), +(4703,65365,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(4704,65365,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(4705,65365,52327,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(4706,65365,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(4707,65365,52186,0,0,0,0,0,0,3,6,0,0,0,0,0,0), +(4708,65365,52186,0,0,0,0,0,0,4,7,0,0,0,0,0,0), +(4709,52186,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0), +(4710,52186,52327,0,0,0,0,0,0,15,15,0,0,0,0,0,0), +(4711,65365,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(4712,65365,52327,0,0,0,0,0,0,6,8,0,0,0,0,0,0), +(4713,65365,52327,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(4714,65365,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(4715,65365,52186,0,0,0,0,0,0,2,8,0,0,0,0,0,0), +(4716,65365,52186,0,0,0,0,0,0,2,8,0,0,0,0,0,0), +(4717,0,52186,52327,0,0,0,0,0,0,20,8,0,0,0,0,0), +(4718,52186,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0), +(4719,65365,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(4720,65365,52327,0,0,0,0,0,0,10,4,0,0,0,0,0,0), +(4721,65365,52327,0,0,0,0,0,0,20,8,0,0,0,0,0,0), +(4722,65365,52327,52326,0,0,0,0,0,15,6,4,0,0,0,0,0), +(4723,52186,52327,52325,0,0,0,0,0,20,12,4,0,0,0,0,0), +(4724,65365,52186,52327,52326,0,0,0,0,4,12,10,6,0,0,0,0), +(4725,65365,52186,52327,0,0,0,0,0,10,10,6,0,0,0,0,0), +(4726,0,65365,0,0,0,0,0,0,0,2,0,0,0,0,0,0), +(4727,52327,52186,51950,0,0,0,0,0,4,4,4,0,0,0,0,0), +(4728,51950,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(4729,52186,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0), +(4730,0,51950,0,0,0,0,0,0,0,1,0,0,0,0,0,0), +(4731,53039,58480,52078,0,0,0,0,0,5,6,3,0,0,0,0,0), +(4732,53039,58480,52078,0,0,0,0,0,4,3,2,0,0,0,0,0), +(4733,53039,58480,52078,0,0,0,0,0,5,6,3,0,0,0,0,0), +(4734,53039,58480,52078,0,0,0,0,0,4,3,2,0,0,0,0,0), +(4735,53039,58480,52078,0,0,0,0,0,5,6,3,0,0,0,0,0), +(4736,53039,58480,52078,0,0,0,0,0,4,3,2,0,0,0,0,0), +(4737,53039,58480,52078,0,0,0,0,0,4,6,3,0,0,0,0,0), +(4738,53039,58480,52078,0,0,0,0,0,4,6,3,0,0,0,0,0), +(4739,53039,58480,52078,0,0,0,0,0,5,6,3,0,0,0,0,0), +(4740,53039,58480,52078,0,0,0,0,0,4,6,3,0,0,0,0,0), +(4741,53039,58480,52078,0,0,0,0,0,4,6,3,0,0,0,0,0), +(4742,53039,58480,52078,0,0,0,0,0,3,3,1,0,0,0,0,0), +(4743,53039,58480,52078,0,0,0,0,0,3,3,1,0,0,0,0,0), +(4744,52186,52325,0,0,0,0,0,0,8,10,0,0,0,0,0,0), +(4745,52186,52325,0,0,0,0,0,0,10,10,0,0,0,0,0,0), +(4746,52186,52325,0,0,0,0,0,0,10,10,0,0,0,0,0,0), +(4747,52186,52325,0,0,0,0,0,0,12,10,0,0,0,0,0,0), +(4748,52186,52325,0,0,0,0,0,0,12,10,0,0,0,0,0,0), +(4749,52186,52325,0,0,0,0,0,0,15,10,0,0,0,0,0,0), +(4750,52186,52325,0,0,0,0,0,0,15,10,0,0,0,0,0,0), +(4751,52186,52325,0,0,0,0,0,0,15,10,0,0,0,0,0,0), +(4752,52186,0,52326,0,0,0,0,0,8,0,10,0,0,0,0,0), +(4753,52186,0,52326,0,0,0,0,0,10,0,10,0,0,0,0,0), +(4754,52186,0,52326,0,0,0,0,0,10,0,10,0,0,0,0,0), +(4755,52186,0,52326,0,0,0,0,0,12,0,10,0,0,0,0,0), +(4756,52186,0,52326,0,0,0,0,0,12,0,10,0,0,0,0,0), +(4757,52186,0,52326,0,0,0,0,0,15,0,10,0,0,0,0,0), +(4758,52186,0,52326,0,0,0,0,0,15,0,10,0,0,0,0,0), +(4759,52186,0,52326,0,0,0,0,0,15,0,10,0,0,0,0,0), +(4760,65365,52327,52325,0,0,0,0,0,12,10,4,0,0,0,0,0), +(4761,55164,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(4762,55188,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(4763,55220,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4764,52976,56217,52325,0,0,0,0,0,12,12,6,0,0,0,0,0), +(4765,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4766,52976,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(4767,52976,38426,0,0,0,0,0,0,7,1,0,0,0,0,0,0), +(4768,52976,38426,0,0,0,0,0,0,10,1,0,0,0,0,0,0), +(4769,52976,38426,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(4770,52976,38426,0,0,0,0,0,0,7,1,0,0,0,0,0,0), +(4771,52976,52325,0,0,0,0,0,0,20,8,0,0,0,0,0,0), +(4772,0,52979,52328,0,0,0,0,0,0,20,2,0,0,0,0,0), +(4773,52976,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0), +(4774,52976,52981,0,0,0,0,0,0,6,1,0,0,0,0,0,0), +(4775,52976,52981,0,0,0,0,0,0,6,1,0,0,0,0,0,0), +(4776,52976,52982,0,0,0,0,0,0,2,8,0,0,0,0,0,0), +(4777,0,52976,38426,0,0,0,0,0,0,12,1,0,0,0,0,0), +(4778,0,52976,38426,0,0,0,0,0,0,10,1,0,0,0,0,0), +(4779,52976,52979,0,0,0,0,0,0,6,1,0,0,0,0,0,0), +(4780,52976,52981,0,0,0,0,0,0,6,1,0,0,0,0,0,0), +(4781,52976,38426,0,0,0,0,0,0,7,1,0,0,0,0,0,0), +(4782,52976,38426,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(4783,52976,52979,0,0,0,0,0,0,8,2,0,0,0,0,0,0), +(4784,52981,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0), +(4785,52982,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0), +(4786,52976,38426,0,0,0,0,0,0,7,1,0,0,0,0,0,0), +(4787,52976,52979,0,0,0,0,0,0,8,2,0,0,0,0,0,0), +(4788,52976,52981,0,0,0,0,0,0,8,2,0,0,0,0,0,0), +(4789,52976,52325,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(4790,52976,52326,0,0,0,0,0,0,6,4,0,0,0,0,0,0), +(4791,52976,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(4792,52976,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0), +(4793,52982,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0), +(4794,56516,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(4795,52976,52979,52328,0,0,0,0,0,40,5,5,0,0,0,0,0), +(4796,52976,52981,0,0,0,0,0,0,10,5,0,0,0,0,0,0), +(4797,52976,38426,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(4798,52976,38426,0,0,0,0,0,0,12,1,0,0,0,0,0,0), +(4799,52976,52979,0,0,0,0,0,0,10,5,0,0,0,0,0,0), +(4800,52976,52981,0,0,0,0,0,0,10,5,0,0,0,0,0,0), +(4801,56516,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(4802,56516,52327,0,0,0,0,0,0,4,12,0,0,0,0,0,0), +(4803,52976,52979,0,0,0,0,0,0,15,5,0,0,0,0,0,0), +(4804,56516,52981,52327,0,0,0,0,0,10,10,6,0,0,0,0,0), +(4805,52976,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(4806,56516,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(4807,56516,52328,52327,52325,0,52326,0,0,8,2,2,2,0,2,0,0), +(4808,52979,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0), +(4813,56516,52325,0,0,0,0,0,0,10,10,0,0,0,0,0,0), +(4814,56516,52325,0,0,0,0,0,0,10,10,0,0,0,0,0,0), +(4815,56516,52325,0,0,0,0,0,0,10,10,0,0,0,0,0,0), +(4816,56516,52325,0,0,0,0,0,0,10,10,0,0,0,0,0,0), +(4817,56516,52979,52325,0,0,0,0,0,8,10,10,0,0,0,0,0), +(4818,56516,52979,52325,0,0,0,0,0,8,10,10,0,0,0,0,0), +(4819,56516,52979,52325,0,0,0,0,0,8,10,10,0,0,0,0,0), +(4820,56516,52979,52325,0,0,0,0,0,8,10,10,0,0,0,0,0), +(4821,56516,52325,0,0,0,0,0,0,10,10,0,0,0,0,0,0), +(4822,56516,52325,0,0,0,0,0,0,10,10,0,0,0,0,0,0), +(4823,56516,52325,0,0,0,0,0,0,10,10,0,0,0,0,0,0), +(4824,56516,52325,0,0,0,0,0,0,10,10,0,0,0,0,0,0), +(4825,56516,52979,52325,0,0,0,0,0,8,10,10,0,0,0,0,0), +(4826,56516,52979,52325,0,0,0,0,0,8,10,10,0,0,0,0,0), +(4827,56516,52979,52325,0,0,0,0,0,8,10,10,0,0,0,0,0), +(4828,56516,52979,52325,0,0,0,0,0,8,10,10,0,0,0,0,0), +(4829,0,52980,52326,52328,52078,0,0,0,0,3,25,25,2,0,0,0), +(4830,0,52980,52328,52078,0,0,0,0,0,3,30,2,0,0,0,0), +(4831,0,52979,52980,52328,52326,52078,0,0,0,10,3,25,25,2,0,0), +(4832,0,52979,52327,52329,52980,52078,0,0,0,10,25,25,3,2,0,0), +(4833,56516,52326,0,0,0,0,0,0,10,10,0,0,0,0,0,0), +(4834,56516,52326,0,0,0,0,0,0,10,10,0,0,0,0,0,0), +(4835,56516,52326,0,0,0,0,0,0,10,10,0,0,0,0,0,0), +(4836,56516,52326,0,0,0,0,0,0,10,10,0,0,0,0,0,0), +(4837,56516,52979,52326,0,0,0,0,0,8,10,10,0,0,0,0,0), +(4838,56516,52979,52326,0,0,0,0,0,8,10,10,0,0,0,0,0), +(4839,56516,52979,52326,0,0,0,0,0,8,10,10,0,0,0,0,0), +(4840,56516,52979,52326,0,0,0,0,0,8,10,10,0,0,0,0,0), +(4841,0,52325,52326,52979,52078,0,0,0,0,12,12,12,1,0,0,0), +(4842,52979,0,52078,0,0,0,0,0,50,0,1,0,0,0,0,0), +(4843,52979,52980,0,0,0,0,0,0,20,1,0,0,0,0,0,0), +(4844,52980,52325,0,0,0,0,0,0,1,20,0,0,0,0,0,0), +(4845,56516,52329,0,0,0,0,0,0,10,10,0,0,0,0,0,0), +(4846,56516,52329,0,0,0,0,0,0,10,10,0,0,0,0,0,0), +(4847,56516,52329,0,0,0,0,0,0,10,10,0,0,0,0,0,0), +(4848,56516,52329,0,0,0,0,0,0,10,10,0,0,0,0,0,0), +(4849,56516,52979,52329,0,0,0,0,0,8,10,10,0,0,0,0,0), +(4850,56516,52979,52329,0,0,0,0,0,8,10,10,0,0,0,0,0), +(4851,56516,52979,52329,0,0,0,0,0,8,10,10,0,0,0,0,0), +(4852,56516,52979,52329,0,0,0,0,0,8,10,10,0,0,0,0,0), +(4853,0,52980,52329,52078,0,0,0,0,0,3,50,3,0,0,0,0), +(4854,52980,52328,52325,52078,0,0,0,0,3,30,20,3,0,0,0,0), +(4855,0,52979,52980,52325,52328,52078,0,0,0,15,3,25,25,3,0,0), +(4856,0,52979,52980,52327,52078,0,0,0,0,10,3,50,3,0,0,0), +(4868,52329,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0), +(4869,57177,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(4870,57178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), +(4871,57179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), +(4872,57181,57182,0,0,0,0,0,0,19,2,0,0,0,0,0,0), +(4873,57183,57180,0,0,0,0,0,0,0,1,0,0,0,0,0,0), +(4874,57181,57182,0,0,0,0,0,0,20,1,0,0,0,0,0,0), +(4875,57183,57180,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4881,58250,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4882,58251,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4884,52179,52180,52178,52177,52181,52182,0,0,3,3,3,3,3,3,0,0), +(4885,51950,52325,52328,52326,0,0,0,0,3,10,10,10,0,0,0,0), +(4886,52186,52327,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(4887,52177,52986,0,0,0,0,0,0,3,3,0,0,0,0,0,0), +(4888,52178,52985,0,0,0,0,0,0,3,3,0,0,0,0,0,0), +(4889,52179,52988,0,0,0,0,0,0,3,3,0,0,0,0,0,0), +(4890,52180,52987,0,0,0,0,0,0,3,3,0,0,0,0,0,0), +(4891,52181,52983,0,0,0,0,0,0,3,3,0,0,0,0,0,0), +(4892,52182,52984,0,0,0,0,0,0,3,3,0,0,0,0,0,0), +(4893,52329,52985,0,0,0,0,0,3371,3,1,0,0,0,0,0,1), +(4894,58205,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4895,58500,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(4896,34259,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0), +(4897,52983,0,3371,0,0,0,0,0,2,0,1,0,0,0,0,0), +(4898,52984,0,3371,0,0,0,0,0,2,0,1,0,0,0,0,0), +(4899,52984,0,3371,0,0,0,0,0,2,0,1,0,0,0,0,0), +(4900,52984,52985,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(4901,52983,52985,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(4902,52985,0,3371,0,0,0,0,0,2,0,1,0,0,0,0,0), +(4903,52985,52983,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(4904,53065,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4905,56850,0,3371,0,0,0,0,0,2,0,1,0,0,0,0,0), +(4906,52986,0,3371,0,0,0,0,0,2,0,1,0,0,0,0,0), +(4907,52988,52329,3371,0,0,0,0,0,2,1,1,0,0,0,0,0), +(4908,52983,52986,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(4909,52983,52988,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(4910,52984,52987,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(4911,52983,52988,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(4912,52984,52988,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(4913,52329,52986,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(4914,52987,52986,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(4915,0,52987,3371,0,0,0,0,0,0,1,1,0,0,0,0,0), +(4916,52329,52983,52985,52986,0,0,0,0,50,12,12,12,0,0,0,0), +(4917,52329,52983,52987,3371,0,0,0,0,8,8,8,1,0,0,0,0), +(4918,52329,52985,52987,3371,0,0,0,0,8,8,8,1,0,0,0,0), +(4919,52329,52985,52988,3371,0,0,0,0,8,8,8,1,0,0,0,0), +(4920,52329,52983,52988,3371,0,0,0,0,8,8,8,1,0,0,0,0), +(4921,52983,52984,52985,52988,52987,3371,0,0,8,8,8,8,8,1,0,0), +(4922,52986,0,3371,0,0,0,0,0,5,0,1,0,0,0,0,0), +(4923,52983,52984,52986,52988,3371,0,0,0,8,4,6,4,1,0,0,0), +(4924,60224,67749,53039,52190,58480,52078,0,0,6,6,3,2,1,1,0,0), +(4925,60224,67749,53039,52191,58480,52078,0,0,6,6,3,2,1,1,0,0), +(4926,60224,67749,53039,52192,58480,52078,0,0,6,6,3,2,1,1,0,0), +(4927,60224,67749,53039,52191,58480,52078,0,0,6,6,3,2,1,1,0,0), +(4928,60224,67749,53039,52192,58480,52078,0,0,6,6,3,2,1,1,0,0), +(4929,60224,67749,53039,52191,58480,52078,0,0,6,6,3,2,1,1,0,0), +(4930,60224,67749,53039,52191,58480,52078,0,0,6,6,3,2,1,1,0,0), +(4954,52326,67749,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(4955,54849,67749,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(4956,52327,67749,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(4958,57192,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(4959,60224,67749,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(4960,60224,67749,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(4961,60224,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5024,5026,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5033,60768,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(5034,53038,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(5036,54849,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(5037,54849,52181,52976,0,0,0,0,0,8,2,2,0,0,0,0,0), +(5038,54849,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(5039,54849,60224,52179,0,0,0,0,0,6,6,2,0,0,0,0,0), +(5040,0,60224,67749,0,0,0,0,0,0,1,2,0,0,0,0,0), +(5041,54849,60224,0,0,0,0,0,0,10,10,0,0,0,0,0,0), +(5042,54849,60224,67749,0,0,0,0,0,10,8,4,0,0,0,0,0), +(5043,54849,60224,67749,0,0,0,0,0,10,8,8,0,0,0,0,0), +(5044,54849,60224,67749,52182,0,0,0,0,12,4,8,2,0,0,0,0), +(5045,52186,60224,0,0,0,0,0,0,20,4,0,0,0,0,0,0), +(5046,52186,52327,0,0,0,0,0,0,15,12,0,0,0,0,0,0), +(5047,67749,53039,52325,0,0,0,0,0,2,5,6,0,0,0,0,0), +(5048,60224,67749,52186,53010,0,0,0,0,2,8,16,20,0,0,0,0), +(5049,54849,67749,53039,0,0,0,0,0,4,2,5,0,0,0,0,0), +(5050,53039,67749,0,0,0,0,0,0,5,5,0,0,0,0,0,0), +(5051,54849,60224,60852,0,0,0,0,0,2,2,1,0,0,0,0,0), +(5052,54849,60224,60852,0,0,0,0,0,2,2,1,0,0,0,0,0), +(5053,60224,67749,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(5054,4470,60224,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(5055,0,67749,0,0,0,0,0,0,0,3,0,0,0,0,0,0), +(5056,53039,52192,0,0,0,0,0,0,2,2,0,0,0,0,0,0), +(5057,52186,62778,62654,0,0,0,0,0,2,2,2,0,0,0,0,0), +(5058,60224,52186,52325,0,0,0,0,0,1,4,1,0,0,0,0,0), +(5059,53039,58480,60224,67749,52078,0,0,0,12,2,6,8,1,0,0,0), +(5060,53039,58480,39684,40533,52078,0,0,0,9,3,1,1,1,0,0,0), +(5061,54849,60224,60852,0,0,0,0,0,2,2,1,0,0,0,0,0), +(5062,54849,60224,60852,0,0,0,0,0,2,2,1,0,0,0,0,0), +(5063,60865,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5064,6265,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5065,52977,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(5066,61037,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5067,0,52327,0,0,0,0,0,0,0,2,0,0,0,0,0,0), +(5068,52328,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(5069,0,52325,0,0,0,0,0,0,0,2,0,0,0,0,0,0), +(5070,0,52326,0,0,0,0,0,0,0,2,0,0,0,0,0,0), +(5071,52979,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(5072,52979,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(5077,52186,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0), +(5078,61981,39502,0,0,0,0,0,0,5,5,0,0,0,0,0,0), +(5081,61979,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(5082,61980,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(5083,0,61989,61990,61991,61992,61993,61994,61995,0,1,1,1,1,1,1,1), +(5091,61988,0,61990,61991,61992,61993,61994,61995,1,0,1,1,1,1,1,1), +(5092,61988,61989,0,61991,61992,61993,61994,61995,1,1,0,1,1,1,1,1), +(5093,61988,61989,61990,0,61992,61993,61994,61995,1,1,1,0,1,1,1,1), +(5094,61988,61989,61990,61991,0,61993,61994,61995,1,1,1,1,0,1,1,1), +(5095,61988,61989,61990,61991,61992,0,61994,61995,1,1,1,1,1,0,1,1), +(5096,61988,61989,61990,61991,61992,61993,0,61995,1,1,1,1,1,1,0,1), +(5097,61988,61989,61990,61991,61992,61993,61994,0,1,1,1,1,1,1,1,0), +(5100,0,62005,62006,62007,62008,62009,62010,62011,0,1,1,1,1,1,1,1), +(5101,62004,0,62006,62007,62008,62009,62010,62011,1,0,1,1,1,1,1,1), +(5102,62004,62005,0,62007,62008,62009,62010,62011,1,1,0,1,1,1,1,1), +(5103,62004,62005,62006,0,62008,62009,62010,62011,1,1,1,0,1,1,1,1), +(5104,62004,62005,62006,62007,0,62009,62010,62011,1,1,1,1,0,1,1,1), +(5105,62004,62005,62006,62007,62008,0,62010,62011,1,1,1,1,1,0,1,1), +(5106,62004,62005,62006,62007,62008,62009,0,62011,1,1,1,1,1,1,0,1), +(5107,62004,62005,62006,62007,62008,62009,62010,0,1,1,1,1,1,1,1,0), +(5108,0,61997,61998,61999,62000,62001,62002,62003,0,1,1,1,1,1,1,1), +(5109,61996,0,61998,61999,62000,62001,62002,62003,1,0,1,1,1,1,1,1), +(5110,61996,61997,0,61999,62000,62001,62002,62003,1,1,0,1,1,1,1,1), +(5111,61996,61997,61998,0,62000,62001,62002,62003,1,1,1,0,1,1,1,1), +(5112,61996,61997,61998,61999,0,62001,62002,62003,1,1,1,1,0,1,1,1), +(5113,61996,61997,61998,61999,62000,0,62002,62003,1,1,1,1,1,0,1,1), +(5114,61996,61997,61998,61999,62000,62001,0,62003,1,1,1,1,1,1,0,1), +(5115,61996,61997,61998,61999,62000,62001,62002,0,1,1,1,1,1,1,1,0), +(5116,0,62013,62014,62015,62016,62017,62018,62019,0,1,1,1,1,1,1,1), +(5117,62012,0,62014,62015,62016,62017,62018,62019,1,0,1,1,1,1,1,1), +(5118,62012,62013,0,62015,62016,62017,62018,62019,1,1,0,1,1,1,1,1), +(5119,62012,62013,62014,0,62016,62017,62018,62019,1,1,1,0,1,1,1,1), +(5120,62012,62013,62014,62015,0,62017,62018,62019,1,1,1,1,0,1,1,1), +(5121,62012,62013,62014,62015,62016,0,62018,62019,1,1,1,1,1,0,1,1), +(5122,62012,62013,62014,62015,62016,62017,0,62019,1,1,1,1,1,1,0,1), +(5123,62012,62013,62014,62015,62016,62017,62018,0,1,1,1,1,1,1,1,0), +(5124,61978,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(5125,61978,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(5126,61978,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(5127,61978,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0), +(5128,55185,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0), +(5129,39502,61978,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(5130,61981,52329,39502,0,0,0,0,0,10,30,1,0,0,0,0,0), +(5131,39502,61981,52329,0,0,0,0,0,10,3,6,0,0,0,0,0), +(5132,39502,0,52329,0,0,0,0,0,10,0,20,0,0,0,0,0), +(5133,39502,61981,52329,52326,0,0,0,0,10,8,24,6,0,0,0,0), +(5134,39502,61981,52329,52328,0,0,0,0,10,8,24,6,0,0,0,0), +(5135,39502,61981,52329,52325,0,0,0,0,10,8,24,6,0,0,0,0), +(5136,39502,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(5137,39502,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(5138,39502,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(5139,61981,0,68047,0,0,0,0,0,4,0,1,0,0,0,0,0), +(5140,39502,61981,52326,52328,52327,52325,0,0,10,2,2,2,2,2,0,0), +(5141,61981,52329,52325,62323,0,0,0,0,8,24,6,1,0,0,0,0), +(5142,61981,52329,52327,67348,0,0,0,0,12,36,12,1,0,0,0,0), +(5143,0,61981,52329,52326,67319,0,0,0,0,12,36,12,1,0,0,0), +(5144,0,61981,52329,52328,67335,0,0,0,0,12,36,12,1,0,0,0), +(5145,39502,61978,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(5146,39502,61978,62313,0,0,0,0,0,1,3,5,0,0,0,0,0), +(5147,39502,61978,62313,0,0,0,0,0,1,3,5,0,0,0,0,0), +(5148,39502,61978,62313,0,0,0,0,0,1,3,5,0,0,0,0,0), +(5149,39502,61978,62313,0,0,0,0,0,1,3,5,0,0,0,0,0), +(5150,39502,61978,62313,0,0,0,0,0,1,3,5,0,0,0,0,0), +(5151,62610,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(5152,53071,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5153,62783,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5154,62784,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5155,62778,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5156,62782,62785,0,0,0,0,0,0,3,2,0,0,0,0,0,0), +(5157,53063,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5158,30817,0,62786,0,0,0,0,0,1,0,1,0,0,0,0,0), +(5159,62784,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5160,2596,2595,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(5161,53072,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5162,62785,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5163,53062,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(5164,30817,60838,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(5165,62782,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5166,62791,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5167,58265,159,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(5168,53068,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5169,53068,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5170,53067,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5171,53067,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5172,53066,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5173,53064,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5174,53066,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5175,62780,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5176,53064,53068,53070,0,0,0,0,0,2,2,2,0,0,0,0,0), +(5177,62779,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5178,53072,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5179,53070,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5180,58278,159,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(5181,62786,159,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(5182,62781,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5183,62791,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5184,62825,62824,62823,0,0,0,0,0,1,1,1,0,0,0,0,0), +(5185,17031,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5186,17031,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5187,17032,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5188,17032,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5189,53010,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(5190,39502,61978,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(5191,39502,61978,0,0,0,0,0,0,4,1,0,0,0,0,0,0), +(5192,39502,61978,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(5193,39502,61978,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(5194,39502,61978,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(5195,39502,61978,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(5196,39502,61978,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(5197,39502,61978,0,0,0,0,0,0,2,1,0,0,0,0,0,0), +(5199,61978,10648,0,0,0,0,0,0,3,1,0,0,0,0,0,0), +(5200,64670,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5201,63388,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5202,39774,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5203,61978,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5204,44452,52555,52719,52721,65358,0,0,0,1,10,6,6,1,0,0,0), +(5205,52186,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0), +(5206,43118,0,0,0,0,0,0,10648,3,0,0,0,0,0,0,1), +(5207,58085,58086,58087,58088,58142,0,0,0,1,1,1,1,8,0,0,0), +(5208,58085,58086,58087,58088,0,0,0,0,3,3,3,3,0,0,0,0), +(5211,65892,65893,58480,58087,58088,56850,0,0,1,8,12,8,8,8,0,0), +(5212,67229,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5213,61981,39502,0,0,0,0,0,0,1,5,0,0,0,0,0,0), +(5214,52721,52722,52555,0,0,0,0,0,8,1,8,0,0,0,0,0), +(5215,52721,52722,52719,0,0,0,0,0,8,1,4,0,0,0,0,0), +(5217,52983,0,3371,0,0,0,0,0,1,0,1,0,0,0,0,0), +(5218,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(5219,52329,52984,52986,3371,0,0,0,0,8,8,8,1,0,0,0,0), +(5220,43116,0,0,0,0,0,0,39354,3,0,0,0,0,0,0,1), +(5221,43124,0,0,0,0,0,0,39354,3,0,0,0,0,0,0,1), +(5222,43116,0,0,0,0,0,0,39354,3,0,0,0,0,0,0,1), +(5223,43118,0,0,0,0,0,0,39354,3,0,0,0,0,0,0,1), +(5224,43118,0,0,0,0,0,0,39354,3,0,0,0,0,0,0,1), +(5225,43122,0,0,0,0,0,0,39354,3,0,0,0,0,0,0,1), +(5229,43124,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(5230,53039,58480,52078,0,0,0,0,0,4,5,3,0,0,0,0,0), +(5231,53039,58480,52078,0,0,0,0,0,5,6,3,0,0,0,0,0), +(5232,53643,52078,0,0,0,0,0,0,8,4,0,0,0,0,0,0), +(5233,52328,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(5234,52984,52988,3371,0,0,0,0,0,1,1,1,0,0,0,0,0), +(5247,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(5248,52555,52719,52721,0,0,0,0,0,3,3,3,0,0,0,0,0), +(5249,54849,60224,52327,0,0,0,0,0,4,6,4,0,0,0,0,0), +(5250,67749,53039,0,0,0,0,0,0,6,3,0,0,0,0,0,0), +(5251,67749,52186,0,0,0,0,0,0,1,6,0,0,0,0,0,0), +(5252,43118,0,0,0,0,10648,0,0,3,0,0,0,0,1,0,0), +(5253,52193,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5254,52193,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5255,52193,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5256,43126,0,0,0,0,0,0,39502,3,0,0,0,0,0,0,1), +(5265,68662,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0), +(5276,53069,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(5277,52192,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5278,52716,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5279,52329,52983,0,52986,0,0,0,0,50,12,0,24,0,0,0,0), +(5280,52329,52983,0,52986,0,0,0,0,50,24,0,12,0,0,0,0), +(5281,52329,52983,52985,52986,0,0,0,0,50,8,20,8,0,0,0,0), +(5282,52303,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5283,52303,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5284,52303,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5285,52555,0,52722,52327,0,0,0,0,6,0,2,25,0,0,0,0), +(5286,52555,52719,52722,52326,0,0,0,0,4,4,2,15,0,0,0,0), +(5287,52555,52722,52328,0,0,0,0,0,12,2,15,0,0,0,0,0), +(5288,43124,0,0,0,0,0,39501,0,3,0,0,0,0,0,1,0), +(5313,54439,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5339,43126,0,0,0,39502,0,0,0,3,0,0,0,1,0,0,0), +(5340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), +(5345,52186,52196,52195,52327,0,0,0,0,4,4,4,75,0,0,0,0), +(5346,53039,52325,69237,52078,0,0,0,0,10,40,4,3,0,0,0,0), +(5347,53039,52325,69237,52078,0,0,0,0,10,40,4,3,0,0,0,0), +(5348,53039,52325,69237,52078,0,0,0,0,10,40,4,3,0,0,0,0), +(5349,52980,52325,52326,69237,52078,0,0,0,8,40,40,4,3,0,0,0), +(5350,52980,52325,52326,69237,52078,0,0,0,8,40,40,4,3,0,0,0), +(5351,52980,52325,52326,69237,52078,0,0,0,8,40,40,4,3,0,0,0), +(5352,52980,52325,52326,69237,52078,0,0,0,8,40,40,4,3,0,0,0), +(5353,54440,69237,0,0,0,0,0,0,8,4,0,0,0,0,0,0), +(5354,54440,69237,0,0,0,0,0,0,8,4,0,0,0,0,0,0), +(5355,53039,52325,69237,52078,0,0,0,0,10,40,4,3,0,0,0,0), +(5356,53039,52325,69237,52078,0,0,0,0,10,40,4,3,0,0,0,0), +(5357,53039,52325,69237,52078,0,0,0,0,10,40,4,3,0,0,0,0), +(5358,52980,52325,52326,69237,52078,0,0,0,8,40,40,4,3,0,0,0), +(5359,52980,52325,52326,69237,52078,0,0,0,8,40,40,4,3,0,0,0), +(5360,52980,52325,52326,69237,52078,0,0,0,8,40,40,4,3,0,0,0), +(5361,52980,52325,52326,69237,52078,0,0,0,8,40,40,4,3,0,0,0), +(5362,54440,69237,0,0,0,0,0,0,8,4,0,0,0,0,0,0), +(5363,54440,69237,0,0,0,0,0,0,8,4,0,0,0,0,0,0), +(5364,6529,69980,39684,0,0,0,0,0,5,3,1,1,0,0,0,0), +(5365,30816,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5366,52980,52325,0,0,0,0,0,0,1,4,0,0,0,0,0,0), +(5367,52980,52327,0,0,0,0,0,0,1,4,0,0,0,0,0,0), +(5368,53643,52326,52325,0,0,0,0,0,10,6,6,0,0,0,0,0), +(5369,0,52188,52191,52328,0,0,0,0,0,1,4,8,0,0,0,0), +(5370,0,52188,52195,52326,0,0,0,0,0,1,4,8,0,0,0,0), +(5371,0,52188,52190,52327,0,0,0,0,0,1,4,8,0,0,0,0), +(5372,0,52188,52191,52328,52325,0,0,0,0,1,5,8,4,0,0,0), +(5373,0,52188,52195,52326,52329,0,0,0,0,1,5,8,4,0,0,0), +(5374,0,52188,52190,52327,52326,0,0,0,0,1,5,8,6,0,0,0), +(5375,0,61981,52329,52326,67335,0,0,0,0,5,6,6,1,0,0,0), +(5376,0,61981,0,52326,67319,0,0,0,0,5,0,12,1,0,0,0), +(5377,0,61981,0,52329,67348,0,0,0,0,5,0,12,1,0,0,0), +(5378,53039,52192,52190,60224,52329,0,0,0,1,1,1,4,20,0,0,0), +(5379,58480,52190,53039,52078,0,0,0,0,8,2,3,5,0,0,0,0), +(5380,58480,52191,52182,53039,52078,0,0,0,8,1,2,1,5,0,0,0), +(5381,58480,52326,0,52078,0,0,0,0,8,30,0,5,0,0,0,0), +(5382,58480,52325,53039,52078,0,0,0,0,8,8,4,5,0,0,0,0), +(5383,58480,52193,53039,52078,0,0,0,0,8,1,3,5,0,0,0,0), +(5384,58480,52178,56516,52078,0,0,0,0,8,8,2,5,0,0,0,0), +(5385,58480,52191,53039,52078,0,0,0,0,8,2,4,5,0,0,0,0), +(5386,58480,56516,53039,52078,0,0,0,0,8,6,4,5,0,0,0,0), +(5394,70994,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(5395,70997,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(5396,70999,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(5397,71000,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(5398,71017,71015,71016,71008,0,0,0,0,0,1,1,1,0,0,0,0), +(5399,52980,61981,0,0,0,0,0,0,3,3,0,0,0,0,0,0), +(5400,54440,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(5401,52980,0,52327,0,0,0,0,0,3,0,15,0,0,0,0,0), +(5402,53039,67749,60224,52192,0,0,0,0,1,4,5,2,0,0,0,0), +(5403,53039,58480,39684,40533,52078,0,0,0,5,8,1,1,5,0,0,0), +(5406,71083,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5407,43126,0,0,0,0,39502,0,0,3,0,0,0,0,1,0,0), +(5408,71017,71015,71016,71008,0,0,0,0,1,0,1,1,0,0,0,0), +(5409,71017,71015,71016,71008,0,0,0,0,1,1,0,1,0,0,0,0), +(5410,71017,71015,71016,71008,0,0,0,0,1,1,1,0,0,0,0,0), +(5411,52980,52327,0,0,0,0,0,0,1,20,0,0,0,0,0,0), +(5412,52979,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0), +(5413,71807,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5414,71807,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5415,71807,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5416,71807,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5417,71810,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5418,71810,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5419,71810,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5420,71810,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5421,71810,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5422,71810,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5423,71810,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5424,71810,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5425,71810,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5426,71810,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5427,71810,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5428,71810,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5429,71810,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5430,71810,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5431,71810,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5432,71810,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5433,71810,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5434,71810,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5435,71808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5436,71808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5437,71808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5438,71808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5439,71808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5440,71808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5441,71808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5442,71808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5443,71808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5444,71808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5445,71808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5446,71808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5447,71808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5448,71808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5449,71808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5450,71808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5451,71808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5452,71808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5453,71808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5454,71808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5455,71808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5456,71808,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5457,71809,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5458,71809,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5459,71809,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5460,71809,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5461,71809,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5462,71809,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5463,71809,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5464,71809,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5465,71809,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5466,71809,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5467,71809,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5468,71809,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5469,71805,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5470,71805,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5471,71805,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5472,71805,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5473,71805,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5474,71806,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5475,71806,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5476,71806,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5477,71806,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5478,71806,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5479,71083,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5480,52191,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(5481,52192,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(5482,52193,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(5483,52194,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(5484,52190,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(5485,52195,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(5487,71967,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0), +(5489,2320,6260,6529,0,0,0,0,0,1,1,2,0,0,0,0,0), +(5490,71083,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5491,54440,71998,0,0,0,0,0,0,8,8,0,0,0,0,0,0), +(5492,54440,71998,0,0,0,0,0,0,8,8,0,0,0,0,0,0), +(5493,54440,71998,0,0,0,0,0,0,8,4,0,0,0,0,0,0), +(5494,54440,71998,0,0,0,0,0,0,5,4,0,0,0,0,0,0), +(5495,58480,52329,52078,71998,0,0,0,0,8,40,4,8,0,0,0,0), +(5496,58480,52325,52078,71998,0,0,0,0,8,40,4,8,0,0,0,0), +(5497,58480,53039,52078,71998,0,0,0,0,8,10,4,8,0,0,0,0), +(5498,58480,52329,52078,71998,0,0,0,0,4,30,2,4,0,0,0,0), +(5499,58480,52325,0,52078,71998,0,0,0,4,30,0,2,4,0,0,0), +(5500,58480,53039,52078,71998,0,0,0,0,4,10,2,4,0,0,0,0), +(5501,52980,52329,52078,71998,0,0,0,0,8,40,4,8,0,0,0,0), +(5502,52980,52979,52078,71998,0,0,0,0,8,40,4,8,0,0,0,0), +(5503,52980,52325,52328,52078,71998,0,0,0,8,20,20,4,8,0,0,0), +(5504,52980,52979,52325,52327,52078,71998,0,0,8,25,10,10,4,8,0,0), +(5505,52980,52329,52326,52328,52078,71998,0,0,4,10,10,10,2,4,0,0), +(5506,52980,52979,52328,52078,71998,0,0,0,4,20,30,2,4,0,0,0), +(5507,52980,52325,52328,52078,71998,0,0,0,4,20,20,2,4,0,0,0), +(5508,52980,52979,52329,52078,71998,0,0,0,4,20,20,2,4,0,0,0), +(5509,19299,1645,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(5511,71083,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5512,2320,2604,6260,0,0,0,0,0,1,1,1,0,0,0,0,0), +(5513,30817,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0), +(5519,4305,2325,0,0,0,0,0,0,5,4,0,0,0,0,0,0), +(5521,71083,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5522,71083,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5523,39354,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5613,74256,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5615,74748,74750,0,0,0,0,0,0,1,1,0,0,0,0,0,0), +(5623,52722,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0), +(5860,43116,0,0,0,0,39354,0,0,3,0,0,0,0,1,0,0); \ No newline at end of file diff --git a/src/game/Entities/Pet.cpp b/src/game/Entities/Pet.cpp index 87e347649..d7edf4105 100644 --- a/src/game/Entities/Pet.cpp +++ b/src/game/Entities/Pet.cpp @@ -746,22 +746,21 @@ void Pet::Unsummon(PetSaveMode mode, Unit* owner /*= nullptr*/) { // returning of reagents only for players, so best done here uint32 spellId = GetUInt32Value(UNIT_CREATED_BY_SPELL); - SpellEntry const *spellInfo = sSpellTemplate.LookupEntry(spellId); - SpellReagentsEntry const* spellReagents = spellInfo ? spellInfo->GetSpellReagents() : NULL; + SpellEntry const* spellInfo = sSpellTemplate.LookupEntry(spellId); - if (spellReagents) + if (spellInfo) { for (uint32 i = 0; i < MAX_SPELL_REAGENTS; ++i) { - if (spellReagents->Reagent[i] > 0) + if (spellInfo->Reagent[i] > 0) { ItemPosCountVec dest; //for succubus, voidwalker, felhunter and felguard credit soulshard when despawn reason other than death (out of range, logout) - uint8 msg = p_owner->CanStoreNewItem(NULL_BAG, NULL_SLOT, dest, spellReagents->Reagent[i], spellReagents->ReagentCount[i]); + uint8 msg = p_owner->CanStoreNewItem(NULL_BAG, NULL_SLOT, dest, spellInfo->Reagent[i], spellInfo->ReagentCount[i]); if (msg == EQUIP_ERR_OK) { - Item* item = p_owner->StoreNewItem(dest, spellReagents->Reagent[i], true); + Item* item = p_owner->StoreNewItem(dest, spellInfo->Reagent[i], true); if (p_owner->IsInWorld()) - p_owner->SendNewItem(item, spellReagents->ReagentCount[i], true, false); + p_owner->SendNewItem(item, spellInfo->ReagentCount[i], true, false); } } } diff --git a/src/game/PlayerBot/Base/PlayerbotAI.cpp b/src/game/PlayerBot/Base/PlayerbotAI.cpp index 919950446..084280fab 100644 --- a/src/game/PlayerBot/Base/PlayerbotAI.cpp +++ b/src/game/PlayerBot/Base/PlayerbotAI.cpp @@ -253,10 +253,7 @@ uint32 PlayerbotAI::getSpellId(const char* args, bool master) const continue; bool isExactMatch = (name.length() == wnamepart.length()) ? true : false; - SpellReagentsEntry const* spellReagents = pSpellInfo->GetSpellReagents(); - if (!spellReagents) - continue; - bool usesNoReagents = (spellReagents->Reagent[0] <= 0) ? true : false; + bool usesNoReagents = (pSpellInfo->Reagent[0] <= 0) ? true : false; // if we already found a spell bool useThisSpell = true; @@ -319,10 +316,7 @@ uint32 PlayerbotAI::getPetSpellId(const char* args) const continue; bool isExactMatch = (name.length() == wnamepart.length()) ? true : false; - SpellReagentsEntry const* spellReagents = pSpellInfo->GetSpellReagents(); - if (!spellReagents) - continue; - bool usesNoReagents = (spellReagents->Reagent[0] <= 0) ? true : false; + bool usesNoReagents = (pSpellInfo->Reagent[0] <= 0) ? true : false; // if we already found a spell bool useThisSpell = true; @@ -5827,15 +5821,11 @@ bool PlayerbotAI::HasSpellReagents(uint32 spellId) for (uint32 i = 0; i < MAX_SPELL_REAGENTS; ++i) { - SpellReagentsEntry const* spellReagents = pSpellInfo->GetSpellReagents(); - if (!spellReagents) - continue; - - if (spellReagents->Reagent[i] <= 0) + if (pSpellInfo->Reagent[i] <= 0) continue; - uint32 itemid = spellReagents->Reagent[i]; - uint32 count = spellReagents->ReagentCount[i]; + uint32 itemid = pSpellInfo->Reagent[i]; + uint32 count = pSpellInfo->ReagentCount[i]; if (!m_bot->HasItemCount(itemid, count)) return false; @@ -5857,16 +5847,12 @@ uint32 PlayerbotAI::GetSpellCharges(uint32 spellId) std::list chargeList; for (uint32 i = 0; i < MAX_SPELL_REAGENTS; ++i) { - SpellReagentsEntry const* spellReagents = pSpellInfo->GetSpellReagents(); - if (!spellReagents) - continue; - - if (spellReagents->Reagent[i] <= 0) + if (pSpellInfo->Reagent[i] <= 0) continue; uint32 totalcount = 0; - uint32 itemid = spellReagents->Reagent[i]; - uint32 count = spellReagents->ReagentCount[i]; + uint32 itemid = pSpellInfo->Reagent[i]; + uint32 count = pSpellInfo->ReagentCount[i]; ItemCountInInv(itemid, totalcount); chargeList.push_back((totalcount / count)); } diff --git a/src/game/Server/DBCStores.cpp b/src/game/Server/DBCStores.cpp index 284aeec7b..e6b7a0f7b 100644 --- a/src/game/Server/DBCStores.cpp +++ b/src/game/Server/DBCStores.cpp @@ -177,7 +177,6 @@ SpellCategoryStore sSpellCategoryStore; ItemSpellCategoryStore sItemSpellCategoryStore; PetFamilySpellsStore sPetFamilySpellsStore; -DBCStorage sSpellReagentsStore(SpellReagentsEntryfmt); DBCStorage sSpellScalingStore(SpellScalingEntryfmt); DBCStorage sSpellShapeshiftStore(SpellShapeshiftEntryfmt); DBCStorage sSpellTargetRestrictionsStore(SpellTargetRestrictionsEntryfmt); @@ -618,7 +617,6 @@ void LoadDBCStores(const std::string& dataPath) } } - LoadDBC(availableDbcLocales,bar,bad_dbc_files,sSpellReagentsStore, dbcPath,"SpellReagents.dbc"); LoadDBC(availableDbcLocales,bar,bad_dbc_files,sSpellScalingStore, dbcPath,"SpellScaling.dbc"); LoadDBC(availableDbcLocales,bar,bad_dbc_files,sSpellShapeshiftStore, dbcPath,"SpellShapeshift.dbc"); LoadDBC(availableDbcLocales,bar,bad_dbc_files,sSpellTargetRestrictionsStore, dbcPath,"SpellTargetRestrictions.dbc"); diff --git a/src/game/Server/DBCStores.h b/src/game/Server/DBCStores.h index 97b54b26c..29982f3a1 100644 --- a/src/game/Server/DBCStores.h +++ b/src/game/Server/DBCStores.h @@ -212,7 +212,6 @@ extern DBCStorage sSpellRangeStore; extern DBCStorage sSpellRuneCostStore; extern DBCStorage sSpellShapeshiftFormStore; extern DBCStorage sSpellCategoriesStore; -extern DBCStorage sSpellReagentsStore; extern DBCStorage sSpellScalingStore; extern DBCStorage sSpellShapeshiftStore; extern DBCStorage sSpellTargetRestrictionsStore; diff --git a/src/game/Server/DBCStructure.cpp b/src/game/Server/DBCStructure.cpp index 3df9a2a1d..1b37f80b2 100644 --- a/src/game/Server/DBCStructure.cpp +++ b/src/game/Server/DBCStructure.cpp @@ -49,11 +49,6 @@ SpellEffectEntry const* SpellEntry::GetSpellEffect(SpellEffectIndex eff) const return GetSpellEffectEntry(Id, eff); } -SpellReagentsEntry const* SpellEntry::GetSpellReagents() const -{ - return SpellReagentsId ? sSpellReagentsStore.LookupEntry(SpellReagentsId) : NULL; -} - SpellScalingEntry const* SpellEntry::GetSpellScaling() const { return SpellScalingId ? sSpellScalingStore.LookupEntry(SpellScalingId) : NULL; diff --git a/src/game/Server/DBCStructure.h b/src/game/Server/DBCStructure.h index 1a97c655d..3d3e3a564 100644 --- a/src/game/Server/DBCStructure.h +++ b/src/game/Server/DBCStructure.h @@ -1858,14 +1858,6 @@ struct SpellRangeEntry //char* ShortName; // 23-38 m_displayNameShort_lang }; -// SpellReagents.dbc -struct SpellReagentsEntry -{ - //uint32 Id; // 0 m_ID - int32 Reagent[MAX_SPELL_REAGENTS]; // 54-61 m_reagent - uint32 ReagentCount[MAX_SPELL_REAGENTS]; // 62-69 m_reagentCount -}; - // SpellRuneCost.dbc struct SpellRuneCostEntry { @@ -2014,11 +2006,15 @@ struct SpellEntry uint32 ManaPerSecondPerLevel; // 69 m_manaPerSecondPerLevel //uint32 PowerDisplayId; // 70 m_powerDisplayID - id from PowerDisplay.dbc, new in 3.1 float ManaCostPercentageFloat; // 71 4.3.0 - uint32 SpellReagentsId; // 72 SpellReagents.dbc - uint32 SpellShapeshiftId; // 73 SpellShapeshift.dbc - uint32 SpellTargetRestrictionsId; // 74 SpellTargetRestrictions.dbc - uint32 SpellTotemsId; // 75 SpellTotems.dbc - //uint32 ResearchProjectId; // 76 ResearchProject.dbc + + //uint32 SpellReagentsId; // 72 SpellReagents.dbc + int32 Reagent[MAX_SPELL_REAGENTS]; // 72-79 m_reagent + uint32 ReagentCount[MAX_SPELL_REAGENTS]; // 80-87 m_reagentCount + + uint32 SpellShapeshiftId; // 88 SpellShapeshift.dbc + uint32 SpellTargetRestrictionsId; // 89 SpellTargetRestrictions.dbc + uint32 SpellTotemsId; // 90 SpellTotems.dbc + //uint32 ResearchProjectId; // 91 ResearchProject.dbc // helpers int32 CalculateSimpleValue(SpellEffectIndex eff) const; @@ -2027,7 +2023,6 @@ struct SpellEntry // struct access functions SpellCategoriesEntry const* GetSpellCategories() const; SpellEffectEntry const* GetSpellEffect(SpellEffectIndex eff) const; - SpellReagentsEntry const* GetSpellReagents() const; SpellScalingEntry const* GetSpellScaling() const; SpellShapeshiftEntry const* GetSpellShapeshift() const; SpellTargetRestrictionsEntry const* GetSpellTargetRestrictions() const; diff --git a/src/game/Server/SQLStorages.cpp b/src/game/Server/SQLStorages.cpp index 412698559..2d09a4446 100644 --- a/src/game/Server/SQLStorages.cpp +++ b/src/game/Server/SQLStorages.cpp @@ -35,7 +35,7 @@ const char InstanceTemplatedstfmt[] = "iiiiil"; const char WorldTemplatesrcfmt[] = "is"; const char WorldTemplatedstfmt[] = "ii"; const char ConditionsFmt[] = "iiiix"; -const char SpellEntryfmt[] = "iiiiiiiiiiiiiiiifiiiissiiiiiiiiiiiiiiiiiiiiiLiiiiiiiiiiiiiiiiiifiiii"; +const char SpellEntryfmt[] = "iiiiiiiiiiiiiiiifiiiissiiiiiiiiiiiiiiiiiiiiiLiiiiiiiiiiiiiiiiiifiiiiiiiiiiiiiiiiiii"; //const char SpellTemplatesrcfmt[] = "iiiiiiiiiiiiiiiix"; // 0 10 20 30 40 50 60 70 80 90 100 110 120 130 140 150 160 170 180 185 //const char SpellTemplatedstfmt[] = "ixxxiiiixxxxxxxxxxxxxxxxxxxxxxxxiixxxxixxxxxxFxxxxxxxxxxxxxxxxxxxxxxixxxxxFFFxxxxxxixxixxixxixxxxxFFFxxxxxxixxixxixxFFFxxxxxxxxxxxxxppppppppppppppppppppppppppppppppxxxxxxxxxxxFFFxxxxxx"; diff --git a/src/game/Spells/Spell.cpp b/src/game/Spells/Spell.cpp index 060f8d558..81060eefc 100644 --- a/src/game/Spells/Spell.cpp +++ b/src/game/Spells/Spell.cpp @@ -5018,17 +5018,13 @@ void Spell::TakeReagents() if (p_caster->CanNoReagentCast(m_spellInfo)) return; - SpellReagentsEntry const* spellReagents = m_spellInfo->GetSpellReagents(); - for(uint32 x = 0; x < MAX_SPELL_REAGENTS; ++x) { - if(!spellReagents) - continue; - if(spellReagents->Reagent[x] <= 0) + if(m_spellInfo->Reagent[x] <= 0) continue; - uint32 itemid = spellReagents->Reagent[x]; - uint32 itemcount = spellReagents->ReagentCount[x]; + uint32 itemid = m_spellInfo->Reagent[x]; + uint32 itemcount = m_spellInfo->ReagentCount[x]; // if CastItem is also spell reagent if (m_CastItem) @@ -7130,14 +7126,7 @@ bool Spell::IgnoreItemRequirements() const /// Some triggered spells have same reagents that have master spell /// expected in test: master spell have reagents in first slot then triggered don't must use own - if (m_triggeredBySpellInfo) - { - SpellReagentsEntry const* spellReagents = m_triggeredBySpellInfo->GetSpellReagents(); - if (!spellReagents || !spellReagents->Reagent[0]) - return false; - } - - return true; + return !(m_triggeredBySpellInfo && !m_triggeredBySpellInfo->Reagent[0]); } return false; @@ -7262,39 +7251,35 @@ SpellCastResult Spell::CheckItems() { if (!p_caster->CanNoReagentCast(m_spellInfo)) { - SpellReagentsEntry const* spellReagents = m_spellInfo->GetSpellReagents(); - if(spellReagents) + for(uint32 i = 0; i < MAX_SPELL_REAGENTS; ++i) { - for(uint32 i = 0; i < MAX_SPELL_REAGENTS; ++i) - { - if(spellReagents->Reagent[i] <= 0) - continue; + if(m_spellInfo->Reagent[i] <= 0) + continue; - uint32 itemid = spellReagents->Reagent[i]; - uint32 itemcount = spellReagents->ReagentCount[i]; + uint32 itemid = m_spellInfo->Reagent[i]; + uint32 itemcount = m_spellInfo->ReagentCount[i]; + + // if CastItem is also spell reagent + if (m_CastItem && m_CastItem->GetEntry() == itemid) + { + ItemPrototype const* proto = m_CastItem->GetProto(); + if (!proto) + return SPELL_FAILED_REAGENTS; - // if CastItem is also spell reagent - if (m_CastItem && m_CastItem->GetEntry() == itemid) + for (int s = 0; s < MAX_ITEM_PROTO_SPELLS; ++s) { - ItemPrototype const* proto = m_CastItem->GetProto(); - if (!proto) - return SPELL_FAILED_REAGENTS; - - for (int s = 0; s < MAX_ITEM_PROTO_SPELLS; ++s) + // CastItem will be used up and does not count as reagent + int32 charges = m_CastItem->GetSpellCharges(s); + if (proto->Spells[s].SpellCharges < 0 && abs(charges) < 2) { - // CastItem will be used up and does not count as reagent - int32 charges = m_CastItem->GetSpellCharges(s); - if (proto->Spells[s].SpellCharges < 0 && abs(charges) < 2) - { - ++itemcount; - break; - } + ++itemcount; + break; } } - - if (!p_caster->HasItemCount(itemid, itemcount)) - return SPELL_FAILED_REAGENTS; } + + if (!p_caster->HasItemCount(itemid, itemcount)) + return SPELL_FAILED_REAGENTS; } } diff --git a/src/game/Spells/SpellMgr.cpp b/src/game/Spells/SpellMgr.cpp index f4f484460..15ff80794 100644 --- a/src/game/Spells/SpellMgr.cpp +++ b/src/game/Spells/SpellMgr.cpp @@ -3842,22 +3842,18 @@ bool SpellMgr::IsSpellValid(SpellEntry const* spellInfo, Player* pl, bool msg) if (need_check_reagents) { - SpellReagentsEntry const* spellReagents = spellInfo->GetSpellReagents(); - if(spellReagents) + for(int j : spellInfo->Reagent) { - for(int j = 0; j < MAX_SPELL_REAGENTS; ++j) + if(j > 0 && !ObjectMgr::GetItemPrototype(j)) { - if(spellReagents->Reagent[j] > 0 && !ObjectMgr::GetItemPrototype( spellReagents->Reagent[j] )) + if(msg) { - if(msg) - { - if(pl) - ChatHandler(pl).PSendSysMessage("Craft spell %u requires reagent item (Entry: %u) but item does not exist in item_template.",spellInfo->Id,spellReagents->Reagent[j]); - else - sLog.outErrorDb("Craft spell %u requires reagent item (Entry: %u) but item does not exist in item_template.",spellInfo->Id,spellReagents->Reagent[j]); - } - return false; + if(pl) + ChatHandler(pl).PSendSysMessage("Craft spell %u requires reagent item (Entry: %u) but item does not exist in item_template.",spellInfo->Id, j); + else + sLog.outErrorDb("Craft spell %u requires reagent item (Entry: %u) but item does not exist in item_template.",spellInfo->Id, j); } + return false; } } }