-- MySQL dump 10.10 -- -- Host: localhost Database: ferret -- ------------------------------------------------------ -- Server version 5.0.22-community-max-nt-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `codeset` -- DROP TABLE IF EXISTS `codeset`; CREATE TABLE `codeset` ( `codesetid` int(11) NOT NULL default '0', `codest_treeid` smallint(6) default NULL, `codeset_type` tinyint(4) default NULL, `description` varchar(255) default NULL, PRIMARY KEY (`codesetid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `codeset` -- /*!40000 ALTER TABLE `codeset` DISABLE KEYS */; LOCK TABLES `codeset` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `codeset` ENABLE KEYS */; -- -- Table structure for table `codeset_cross_level` -- DROP TABLE IF EXISTS `codeset_cross_level`; CREATE TABLE `codeset_cross_level` ( `componentid` int(11) default NULL, `codesetid` int(11) default NULL, `cross_level` tinyint(4) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `codeset_cross_level` -- /*!40000 ALTER TABLE `codeset_cross_level` DISABLE KEYS */; LOCK TABLES `codeset_cross_level` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `codeset_cross_level` ENABLE KEYS */; -- -- Table structure for table `codeset_hierarchy` -- DROP TABLE IF EXISTS `codeset_hierarchy`; CREATE TABLE `codeset_hierarchy` ( `hierarchyid` int(11) default NULL, `codesetid` int(11) default NULL, `parentid` int(11) default NULL, `codeset_level` tinyint(4) default NULL, `concatenation` tinyint(4) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `codeset_hierarchy` -- /*!40000 ALTER TABLE `codeset_hierarchy` DISABLE KEYS */; LOCK TABLES `codeset_hierarchy` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `codeset_hierarchy` ENABLE KEYS */; -- -- Table structure for table `codeset_tree` -- DROP TABLE IF EXISTS `codeset_tree`; CREATE TABLE `codeset_tree` ( `codest_treeid` smallint(6) default NULL, `description` varchar(255) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `codeset_tree` -- /*!40000 ALTER TABLE `codeset_tree` DISABLE KEYS */; LOCK TABLES `codeset_tree` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `codeset_tree` ENABLE KEYS */; -- -- Table structure for table `codeset_value_map` -- DROP TABLE IF EXISTS `codeset_value_map`; CREATE TABLE `codeset_value_map` ( `codesetid` int(11) default NULL, `periodid` int(11) default NULL, `valueid` int(11) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `codeset_value_map` -- /*!40000 ALTER TABLE `codeset_value_map` DISABLE KEYS */; LOCK TABLES `codeset_value_map` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `codeset_value_map` ENABLE KEYS */; -- -- Table structure for table `codeset_version` -- DROP TABLE IF EXISTS `codeset_version`; CREATE TABLE `codeset_version` ( `codestid` int(11) default NULL, `periodid` int(11) default NULL, `description` varchar(255) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `codeset_version` -- /*!40000 ALTER TABLE `codeset_version` DISABLE KEYS */; LOCK TABLES `codeset_version` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `codeset_version` ENABLE KEYS */; -- -- Table structure for table `component` -- DROP TABLE IF EXISTS `component`; CREATE TABLE `component` ( `componentid` smallint(6) NOT NULL default '0', `programid` smallint(6) NOT NULL default '0', `subsurveyid` int(11) NOT NULL default '0', `description` varchar(255) default NULL, `periodid` smallint(6) default NULL, `gif_urlid` int(11) default NULL, `datacategory` tinyint(4) default NULL, `sponsor_urlid` int(11) NOT NULL default '0', `provider_urlid` int(11) NOT NULL default '0', `sponsor_banner_urlid` int(11) NOT NULL default '0', `provider_banner_urlid` int(11) NOT NULL default '0', `provider_name` varchar(255) default NULL, `sponsor_name` varchar(255) default NULL, `document_urlid` int(11) NOT NULL default '0', `extract_limit` smallint(6) default NULL, KEY `componentid_idx` (`componentid`), KEY `programid_idx` (`programid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `component` -- /*!40000 ALTER TABLE `component` DISABLE KEYS */; LOCK TABLES `component` WRITE; INSERT INTO `component` VALUES (1,1,0,'State Level',1,0,2,2,0,1,0,NULL,'Joint Center for Political and Economic Research',0,50); UNLOCK TABLES; /*!40000 ALTER TABLE `component` ENABLE KEYS */; -- -- Table structure for table `component_instance` -- DROP TABLE IF EXISTS `component_instance`; CREATE TABLE `component_instance` ( `componentid` smallint(6) default NULL, `instanceid` int(11) default NULL, `embargoid` smallint(6) default NULL, `ioapi_machineid` smallint(6) default NULL, `tabapi_machineid` smallint(6) default NULL, `disclaimid` int(11) default NULL, `popest_cotab_ind` tinyint(4) NOT NULL default '0', `virtual_indicator` tinyint(4) NOT NULL default '0', KEY `componentid_idx` (`componentid`), KEY `instanceid_idx` (`instanceid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `component_instance` -- /*!40000 ALTER TABLE `component_instance` DISABLE KEYS */; LOCK TABLES `component_instance` WRITE; INSERT INTO `component_instance` VALUES (1,2003,0,1,1,0,0,0); UNLOCK TABLES; /*!40000 ALTER TABLE `component_instance` ENABLE KEYS */; -- -- Table structure for table `compound` -- DROP TABLE IF EXISTS `compound`; CREATE TABLE `compound` ( `compound_itemid` int(11) NOT NULL default '0', `element_itemid` int(11) NOT NULL default '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `compound` -- /*!40000 ALTER TABLE `compound` DISABLE KEYS */; LOCK TABLES `compound` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `compound` ENABLE KEYS */; -- -- Table structure for table `concept` -- DROP TABLE IF EXISTS `concept`; CREATE TABLE `concept` ( `conceptid` int(11) default NULL, `conceptname` varchar(255) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `concept` -- /*!40000 ALTER TABLE `concept` DISABLE KEYS */; LOCK TABLES `concept` WRITE; INSERT INTO `concept` VALUES (2,'Selectable Geographies'),(3,'CBP State Level Variables'); UNLOCK TABLES; /*!40000 ALTER TABLE `concept` ENABLE KEYS */; -- -- Table structure for table `conceptmap` -- DROP TABLE IF EXISTS `conceptmap`; CREATE TABLE `conceptmap` ( `keywordid` int(11) NOT NULL default '0', `itemid` int(11) NOT NULL default '0', KEY `concept` (`keywordid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `conceptmap` -- /*!40000 ALTER TABLE `conceptmap` DISABLE KEYS */; LOCK TABLES `conceptmap` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `conceptmap` ENABLE KEYS */; -- -- Table structure for table `cotab_comparison` -- DROP TABLE IF EXISTS `cotab_comparison`; CREATE TABLE `cotab_comparison` ( `comparisonid` smallint(6) NOT NULL default '0', `name` varchar(20) NOT NULL default '', `description` varchar(255) NOT NULL default '', UNIQUE KEY `cotab_comparison_ndx` (`comparisonid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `cotab_comparison` -- /*!40000 ALTER TABLE `cotab_comparison` DISABLE KEYS */; LOCK TABLES `cotab_comparison` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `cotab_comparison` ENABLE KEYS */; -- -- Table structure for table `datasetconceptmap` -- DROP TABLE IF EXISTS `datasetconceptmap`; CREATE TABLE `datasetconceptmap` ( `keywordid` int(11) NOT NULL default '0', `componentid` int(11) NOT NULL default '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `datasetconceptmap` -- /*!40000 ALTER TABLE `datasetconceptmap` DISABLE KEYS */; LOCK TABLES `datasetconceptmap` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `datasetconceptmap` ENABLE KEYS */; -- -- Table structure for table `datasetmap` -- DROP TABLE IF EXISTS `datasetmap`; CREATE TABLE `datasetmap` ( `keywordid` int(11) NOT NULL default '0', `componentid` int(11) NOT NULL default '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `datasetmap` -- /*!40000 ALTER TABLE `datasetmap` DISABLE KEYS */; LOCK TABLES `datasetmap` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `datasetmap` ENABLE KEYS */; -- -- Table structure for table `datasetnamemap` -- DROP TABLE IF EXISTS `datasetnamemap`; CREATE TABLE `datasetnamemap` ( `keywordid` int(11) NOT NULL default '0', `componentid` int(11) NOT NULL default '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `datasetnamemap` -- /*!40000 ALTER TABLE `datasetnamemap` DISABLE KEYS */; LOCK TABLES `datasetnamemap` WRITE; INSERT INTO `datasetnamemap` VALUES (46086,1108),(54366,1108),(45890,1108),(46408,1108),(45322,1108),(39473,1108),(45889,1108),(47053,1108),(92096,1107),(91133,1107),(92095,1107),(61807,1107),(98542,1107),(48767,1106),(52084,1106),(91095,1106),(45935,1106),(45900,1106),(45839,1106),(92101,1106),(49134,1106),(98538,1105),(57740,1105),(48237,1105),(46190,1105),(98541,1105),(98540,1105),(98537,1105),(98536,1105),(45860,1105),(98535,1105),(59378,1105),(98534,1105),(47173,1105),(12408,1105),(57432,1105),(98539,1105),(98538,1104),(57740,1104),(48237,1104),(57690,1104),(57689,1104),(46190,1104),(98537,1104),(98536,1104),(45860,1104),(98535,1104),(59378,1104),(98534,1104),(47173,1104),(12408,1104),(46998,1104),(57432,1104),(57506,1103),(92086,1103),(59319,1103),(92085,1103),(45838,1103),(45860,1103),(45919,1103),(45900,1103),(46038,1103),(92085,1103),(92087,1103),(64212,1103),(98533,1103),(54863,1103),(62140,1103),(45954,1103),(46026,1103),(92087,1103),(92133,1103),(64212,1103),(45850,1102),(45839,1102),(45919,1102),(46430,1102),(59030,1102),(45954,1102),(46200,1102),(45936,1102),(46408,1102),(57506,1101),(92086,1101),(92085,1101),(45838,1101),(45860,1101),(45919,1101),(45900,1101),(46038,1101),(92085,1101),(49170,1101),(64212,1101),(57506,1100),(92086,1100),(92085,1100),(45838,1100),(45860,1100),(45919,1100),(45900,1100),(46038,1100),(92085,1100),(49170,1100),(91183,1100),(59019,1099),(52086,1099),(45936,1099),(45935,1099),(45860,1099),(39473,1099),(45900,1099),(45839,1099),(45267,1099),(46803,1099),(92081,1099),(45912,1099),(48028,1099),(52086,1098),(45936,1098),(45935,1098),(45860,1098),(39473,1098),(45900,1098),(45839,1098),(45267,1098),(53403,1098),(45949,1098),(46878,1098),(45900,1098),(8020,1098),(45860,1098),(59115,1098),(45900,1098),(17119,1098),(57511,1096),(52086,1096),(45936,1096),(45935,1096),(45860,1096),(39473,1096),(45900,1096),(45839,1096),(46201,1096),(45267,1096),(52344,1096),(90803,1096),(45267,1096),(46132,1096),(57511,1095),(52086,1095),(45936,1095),(45935,1095),(45860,1095),(39473,1095),(45900,1095),(45839,1095),(46201,1095),(45267,1095),(53403,1095),(90803,1095),(45267,1095),(46132,1095),(57511,1094),(52086,1094),(45936,1094),(45935,1094),(45860,1094),(39473,1094),(45900,1094),(45839,1094),(46201,1094),(45267,1094),(53403,1094),(46201,1094),(45834,1094),(46352,1094),(46039,1094),(57511,1092),(52086,1092),(45936,1092),(45935,1092),(45860,1092),(39473,1092),(45900,1092),(45839,1092),(46201,1092),(45267,1092),(52344,1092),(46201,1092),(45834,1092),(46352,1092),(46039,1092),(59019,1091),(52086,1091),(45936,1091),(45935,1091),(45860,1091),(39473,1091),(45900,1091),(45839,1091),(45267,1091),(46803,1091),(45913,1091),(45912,1091),(90803,1091),(59019,1090),(52086,1090),(45936,1090),(45935,1090),(45860,1090),(39473,1090),(45900,1090),(45839,1090),(45267,1090),(52344,1090),(92081,1090),(45912,1090),(59019,1089),(52086,1089),(45936,1089),(45935,1089),(45860,1089),(39473,1089),(45900,1089),(45839,1089),(45267,1089),(52344,1089),(92081,1089),(45912,1089),(59019,1088),(52086,1088),(45936,1088),(45935,1088),(45860,1088),(39473,1088),(45900,1088),(45839,1088),(45267,1088),(46803,1088),(92081,1088),(45912,1088),(90803,1088),(8080,1088),(59019,1083),(52086,1083),(45936,1083),(45935,1083),(45860,1083),(39473,1083),(45900,1083),(45839,1083),(45267,1083),(46803,1083),(92081,1083),(45912,1083),(59019,1084),(52086,1084),(45936,1084),(45935,1084),(45860,1084),(39473,1084),(45900,1084),(45839,1084),(45267,1084),(46803,1084),(92081,1084),(45912,1084),(52086,1097),(45936,1097),(45935,1097),(45860,1097),(39473,1097),(45900,1097),(45839,1097),(45267,1097),(52344,1097),(45949,1097),(46878,1097),(45900,1097),(8020,1097),(45860,1097),(59115,1097),(45900,1097),(17119,1097),(59019,1086),(52086,1086),(45936,1086),(45935,1086),(45860,1086),(39473,1086),(45900,1086),(45839,1086),(45267,1086),(46803,1086),(92081,1086),(45912,1086),(90803,1086),(8080,1086),(59019,1087),(52086,1087),(45936,1087),(45935,1087),(45860,1087),(39473,1087),(45900,1087),(45839,1087),(45267,1087),(46803,1087),(92081,1087),(45912,1087),(8080,1087),(48767,1041),(52084,1041),(91095,1041),(45935,1041),(45900,1041),(45839,1041),(92101,1041),(49134,1041),(59019,1042),(52086,1042),(45936,1042),(45935,1042),(45860,1042),(39473,1042),(45900,1042),(45839,1042),(45267,1042),(46803,1042),(92081,1042),(45912,1042),(59019,1043),(52086,1043),(45936,1043),(45935,1043),(45860,1043),(39473,1043),(45900,1043),(45839,1043),(45267,1043),(46803,1043),(92081,1043),(45912,1043),(59019,1044),(52086,1044),(45936,1044),(45935,1044),(45860,1044),(39473,1044),(45900,1044),(45839,1044),(45267,1044),(46803,1044),(92081,1044),(45912,1044),(59019,1045),(52086,1045),(45936,1045),(45935,1045),(45860,1045),(39473,1045),(45900,1045),(45839,1045),(45267,1045),(52344,1045),(92081,1045),(45912,1045),(59019,1046),(52086,1046),(45936,1046),(45935,1046),(45860,1046),(39473,1046),(45900,1046),(45839,1046),(45267,1046),(52344,1046),(92081,1046),(45912,1046),(8080,1046),(59019,1047),(52086,1047),(45936,1047),(45935,1047),(45860,1047),(39473,1047),(45900,1047),(45839,1047),(45267,1047),(52344,1047),(92081,1047),(45912,1047),(48028,1047),(59019,1048),(52086,1048),(45936,1048),(45935,1048),(45860,1048),(39473,1048),(45900,1048),(45839,1048),(45267,1048),(52344,1048),(92081,1048),(45912,1048),(59019,1049),(52086,1049),(45936,1049),(45935,1049),(45860,1049),(39473,1049),(45900,1049),(45839,1049),(45267,1049),(52344,1049),(92081,1049),(45912,1049),(59019,1050),(52086,1050),(45936,1050),(45935,1050),(45860,1050),(39473,1050),(45900,1050),(45839,1050),(45267,1050),(52344,1050),(92081,1050),(45912,1050),(59019,1051),(52086,1051),(45936,1051),(45935,1051),(45860,1051),(39473,1051),(45900,1051),(45839,1051),(45267,1051),(53403,1051),(92081,1051),(45912,1051),(59019,1052),(52086,1052),(45936,1052),(45935,1052),(45860,1052),(39473,1052),(45900,1052),(45839,1052),(45267,1052),(53403,1052),(92081,1052),(45912,1052),(59019,1053),(52086,1053),(45936,1053),(45935,1053),(45860,1053),(39473,1053),(45900,1053),(45839,1053),(45267,1053),(53403,1053),(92081,1053),(45912,1053),(59019,1054),(52086,1054),(45936,1054),(45935,1054),(45860,1054),(39473,1054),(45900,1054),(45839,1054),(45267,1054),(52344,1054),(92081,1054),(45912,1054),(90803,1054),(8080,1054),(52086,1024),(45936,1024),(45935,1024),(45860,1024),(39473,1024),(45900,1024),(45839,1024),(45267,1024),(46803,1024),(46039,1024),(52086,1023),(45936,1023),(45935,1023),(45860,1023),(39473,1023),(45900,1023),(45839,1023),(45267,1023),(46802,1023),(46039,1023),(52086,1022),(45936,1022),(45935,1022),(45860,1022),(39473,1022),(45900,1022),(45839,1022),(45267,1022),(53403,1022),(46039,1022),(52086,1021),(45936,1021),(45935,1021),(45860,1021),(39473,1021),(45900,1021),(45839,1021),(45267,1021),(52344,1021),(46039,1021),(57511,1020),(52086,1020),(45936,1020),(45935,1020),(45860,1020),(39473,1020),(45900,1020),(45839,1020),(46201,1020),(45267,1020),(64237,1020),(46201,1020),(46039,1020),(59019,1055),(52086,1055),(45936,1055),(45935,1055),(45860,1055),(39473,1055),(45900,1055),(45839,1055),(45267,1055),(52344,1055),(92081,1055),(45912,1055),(90803,1055),(8080,1055),(59019,1056),(52086,1056),(45936,1056),(45935,1056),(45860,1056),(39473,1056),(45900,1056),(45839,1056),(45267,1056),(53403,1056),(92081,1056),(45912,1056),(59019,1057),(52086,1057),(45936,1057),(45935,1057),(45860,1057),(39473,1057),(45900,1057),(45839,1057),(45267,1057),(53403,1057),(92081,1057),(45912,1057),(59019,1058),(52086,1058),(45936,1058),(45935,1058),(45860,1058),(39473,1058),(45900,1058),(45839,1058),(45267,1058),(53403,1058),(92081,1058),(45912,1058),(59019,1059),(52086,1059),(45936,1059),(45935,1059),(45860,1059),(39473,1059),(45900,1059),(45839,1059),(45267,1059),(53403,1059),(92081,1059),(45912,1059),(8080,1059),(59019,1060),(52086,1060),(45936,1060),(45935,1060),(45860,1060),(39473,1060),(45900,1060),(45839,1060),(45267,1060),(53403,1060),(92081,1060),(45912,1060),(90803,1060),(8080,1060),(59019,1061),(52086,1061),(45936,1061),(45935,1061),(45860,1061),(39473,1061),(45900,1061),(45839,1061),(45267,1061),(53403,1061),(92081,1061),(45912,1061),(48028,1061),(59019,1062),(52086,1062),(45936,1062),(45935,1062),(45860,1062),(39473,1062),(45900,1062),(45839,1062),(45267,1062),(53403,1062),(92081,1062),(45912,1062),(90803,1062),(8080,1062),(59019,1063),(52086,1063),(45936,1063),(45935,1063),(45860,1063),(39473,1063),(45900,1063),(45839,1063),(45267,1063),(46802,1063),(92081,1063),(45912,1063),(59019,1064),(52086,1064),(45936,1064),(45935,1064),(45860,1064),(39473,1064),(45900,1064),(45839,1064),(45267,1064),(46802,1064),(92081,1064),(45912,1064),(59019,1065),(52086,1065),(45936,1065),(45935,1065),(45860,1065),(39473,1065),(45900,1065),(45839,1065),(45267,1065),(46802,1065),(92081,1065),(45912,1065),(59019,1066),(52086,1066),(45936,1066),(45935,1066),(45860,1066),(39473,1066),(45900,1066),(45839,1066),(45267,1066),(46802,1066),(92081,1066),(45912,1066),(59019,1067),(52086,1067),(45936,1067),(45935,1067),(45860,1067),(39473,1067),(45900,1067),(45839,1067),(45267,1067),(46802,1067),(92081,1067),(45912,1067),(8080,1067),(59019,1068),(52086,1068),(45936,1068),(45935,1068),(45860,1068),(39473,1068),(45900,1068),(45839,1068),(45267,1068),(46802,1068),(92081,1068),(45912,1068),(48028,1068),(59019,1069),(52086,1069),(45936,1069),(45935,1069),(45860,1069),(39473,1069),(45900,1069),(45839,1069),(45267,1069),(46802,1069),(92081,1069),(45912,1069),(59019,1070),(52086,1070),(45936,1070),(45935,1070),(45860,1070),(39473,1070),(45900,1070),(45839,1070),(45267,1070),(46802,1070),(92081,1070),(45912,1070),(90803,1070),(59019,1071),(52086,1071),(45936,1071),(45935,1071),(45860,1071),(39473,1071),(45900,1071),(45839,1071),(45267,1071),(46802,1071),(92081,1071),(45912,1071),(59019,1072),(52086,1072),(45936,1072),(45935,1072),(45860,1072),(39473,1072),(45900,1072),(45839,1072),(45267,1072),(46802,1072),(92081,1072),(45912,1072),(8080,1072),(59019,1073),(52086,1073),(45936,1073),(45935,1073),(45860,1073),(39473,1073),(45900,1073),(45839,1073),(45267,1073),(46802,1073),(92081,1073),(45912,1073),(48028,1073),(59019,1074),(52086,1074),(45936,1074),(45935,1074),(45860,1074),(39473,1074),(45900,1074),(45839,1074),(45267,1074),(46802,1074),(92081,1074),(45912,1074),(90803,1074),(8080,1074),(59019,1075),(52086,1075),(45936,1075),(45935,1075),(45860,1075),(39473,1075),(45900,1075),(45839,1075),(45267,1075),(46802,1075),(92081,1075),(45912,1075),(90803,1075),(8080,1075),(59019,1076),(52086,1076),(45936,1076),(45935,1076),(45860,1076),(39473,1076),(45900,1076),(45839,1076),(45267,1076),(46802,1076),(92081,1076),(45912,1076),(57511,1077),(52086,1077),(45936,1077),(45935,1077),(45860,1077),(39473,1077),(45900,1077),(45839,1077),(46201,1077),(45267,1077),(47049,1077),(90803,1077),(45267,1077),(46132,1077),(46039,1077),(59019,1078),(52086,1078),(45936,1078),(45935,1078),(45860,1078),(39473,1078),(45900,1078),(45839,1078),(45267,1078),(46803,1078),(92081,1078),(45912,1078),(59019,1079),(52086,1079),(45936,1079),(45935,1079),(45860,1079),(39473,1079),(45900,1079),(45839,1079),(45267,1079),(46803,1079),(45913,1079),(45912,1079),(16221,1079),(59019,1080),(52086,1080),(45936,1080),(45935,1080),(45860,1080),(39473,1080),(45900,1080),(45839,1080),(45267,1080),(46803,1080),(45913,1080),(45912,1080),(48028,1080),(59019,1081),(52086,1081),(45936,1081),(45935,1081),(45860,1081),(39473,1081),(45900,1081),(45839,1081),(45267,1081),(46803,1081),(92081,1081),(45912,1081),(57506,1082),(57673,1082),(92078,1082),(45839,1082),(45838,1082),(47159,1082),(46953,1082),(46904,1082),(46889,1082),(92086,982),(45921,982),(52072,982),(54366,982),(45890,982),(46408,982),(92085,982),(46904,982),(12550,982),(45923,982),(45924,982),(92086,981),(57506,981),(45921,981),(52072,981),(54366,981),(45890,981),(46408,981),(92085,981),(46904,981),(45838,981),(45923,981),(45924,981),(92086,980),(45921,980),(52072,980),(54366,980),(45890,980),(46408,980),(92085,980),(46904,980),(12550,980),(45923,980),(46649,980),(92086,979),(57506,979),(45921,979),(52072,979),(54366,979),(45890,979),(46408,979),(92085,979),(46904,979),(45838,979),(45923,979),(46649,979),(51197,962),(92100,962),(45839,962),(92063,962),(92099,962),(46803,962),(46904,962),(45852,962),(57506,961),(57673,961),(92078,961),(45839,961),(45838,961),(47159,961),(46803,961),(46904,961),(46889,961),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(52086,957),(45936,957),(45935,957),(45860,957),(39473,957),(45900,957),(45839,957),(45267,957),(64237,957),(46039,957),(28201,956),(92084,956),(59056,956),(45919,956),(43199,956),(53401,956),(46038,956),(28209,956),(8077,956),(45860,956),(889,956),(45979,956),(65960,956),(28201,955),(92084,955),(59056,955),(45919,955),(43199,955),(53401,955),(46038,955),(889,955),(45860,955),(926,955),(45860,955),(750,955),(45979,955),(65960,955),(28201,954),(92084,954),(59056,954),(45919,954),(43199,954),(53401,954),(46038,954),(28209,954),(8077,954),(45860,954),(926,954),(45860,954),(750,954),(45979,954),(65960,954),(28201,953),(92084,953),(59056,953),(45919,953),(43199,953),(53401,953),(46038,953),(926,953),(45860,953),(750,953),(45979,953),(65960,953),(61502,952),(53142,952),(57673,952),(52336,952),(40030,952),(49512,952),(52549,952),(61501,952),(92055,952),(45860,952),(63230,952),(63231,952),(45900,952),(45839,952),(46889,952),(46215,952),(51641,952),(92055,952),(61502,951),(53142,951),(57673,951),(40030,951),(49512,951),(52549,951),(61501,951),(92055,951),(45860,951),(63230,951),(63231,951),(45900,951),(45839,951),(46889,951),(46215,951),(91041,951),(61502,950),(53142,950),(57673,950),(51921,950),(40030,950),(49512,950),(52549,950),(61501,950),(92055,950),(45860,950),(63230,950),(63231,950),(45900,950),(45839,950),(46889,950),(46215,950),(46079,950),(45850,949),(45839,949),(45919,949),(46430,949),(63028,949),(57673,948),(57628,948),(51198,948),(45839,948),(46017,948),(8092,948),(46889,948),(52696,948),(45928,948),(12577,948),(57673,947),(51198,947),(45839,947),(46017,947),(8092,947),(46889,947),(52696,947),(45873,947),(12577,947),(57673,946),(51387,946),(51198,946),(45839,946),(46017,946),(8092,946),(46889,946),(49428,946),(45860,946),(49453,946),(57673,945),(51198,945),(45839,945),(46017,945),(8092,945),(46889,945),(49743,945),(50858,945),(57673,944),(57628,944),(51198,944),(45839,944),(46017,944),(8092,944),(46889,944),(48767,944),(16963,944),(45928,944),(12577,944),(57673,943),(51198,943),(45839,943),(46017,943),(8092,943),(46889,943),(48767,943),(16963,943),(45873,943),(12577,943),(57673,942),(50858,942),(51198,942),(45839,942),(46017,942),(8092,942),(46889,942),(49743,942),(50856,942),(8164,942),(46451,942),(57882,939),(57905,939),(16221,939),(45949,939),(45900,939),(46039,939),(53472,939),(45949,939),(90402,939),(45839,939),(53108,939),(46437,939),(16221,939),(48109,939),(91038,938),(62612,938),(57905,938),(16221,938),(45949,938),(45900,938),(46039,938),(53472,938),(45949,938),(45839,938),(16221,938),(46572,938),(53221,938),(46408,938),(91037,938),(12709,938),(57634,937),(57673,937),(57905,937),(16221,937),(45949,937),(45900,937),(46039,937),(53472,937),(45949,937),(45839,937),(45996,937),(16221,937),(46408,937),(46889,937),(57882,936),(57905,936),(16221,936),(45949,936),(45900,936),(46039,936),(53472,936),(45949,936),(45839,936),(53108,936),(46437,936),(16221,936),(48109,936),(57905,935),(16221,935),(45949,935),(45900,935),(46039,935),(53472,935),(45949,935),(53108,935),(12694,935),(46572,935),(53221,935),(46408,935),(46202,934),(91040,934),(92098,934),(45947,934),(49451,934),(45946,934),(46102,934),(46878,934),(46103,934),(46102,934),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1149),(45862,1149),(45988,1149),(170438,1149),(45862,1149),(45988,1149),(191954,1170),(191954,1170),(191954,1170),(191954,1170),(191954,1170),(191954,1170),(191954,1170),(191954,1170),(191954,1170),(191954,1170),(191954,1170),(191954,1170),(191954,1170),(191954,1170),(191954,1170),(191954,1170),(51281,1169),(51281,1169),(51281,1169),(51281,1169),(51281,1169),(51281,1169),(51281,1169),(51281,1169),(51281,1169),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1149),(45862,1149),(45988,1149),(170438,1149),(45862,1149),(45988,1149),(12577,10),(46729,10),(12577,10),(46729,10),(12577,10),(46729,10),(12577,10),(46729,10),(12577,10),(46729,10),(51281,1165),(51281,1165),(51281,1165),(51281,1165),(51281,1165),(51281,1165),(51281,1165),(51281,1165),(51281,1165),(51281,1165),(51281,1165),(51281,1165),(12399,1166),(12399,1166),(61704,1168),(61704,1168),(61704,1168),(61704,1168),(61704,1168),(61704,1168),(61704,1168),(61704,1168),(61704,1168),(61704,1168),(61704,1168),(61704,1168),(12412,1167),(12412,1167),(12412,1167),(12412,1167),(12412,1167),(12412,1167),(12412,1167),(12412,1167),(12412,1167),(12412,1167),(12412,1167),(12412,1167),(12399,1166),(12399,1166),(12399,1166),(12399,1166),(12399,1166),(12399,1166),(12399,1166),(12399,1166),(12399,1166),(12399,1166),(12399,1166),(12399,1166),(51281,1165),(51281,1165),(51281,1165),(51281,1165),(51281,1165),(51281,1165),(51281,1165),(51281,1165),(51281,1165),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(926,1164),(45860,1164),(750,1164),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(191483,1162),(46039,1162),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191794,1163),(46039,1163),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(191483,1162),(46039,1162),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(191361,1161),(46923,1161),(191361,1161),(46923,1161),(191361,1161),(46923,1161),(191361,1161),(46923,1161),(191361,1161),(46923,1161),(191361,1162),(46923,1162),(191361,1162),(46923,1162),(191361,1162),(46923,1162),(191361,1162),(46923,1162),(191361,1162),(46923,1162),(46039,1157),(45949,1160),(45905,1160),(17017,1160),(45949,1160),(45905,1160),(17017,1160),(45949,1160),(45905,1160),(17017,1160),(45949,1160),(45905,1160),(17017,1160),(45949,1160),(45905,1160),(17017,1160),(45949,1160),(45905,1160),(17017,1160),(45949,1160),(45905,1160),(17017,1160),(45949,1160),(45905,1160),(17017,1160),(45949,1160),(45905,1160),(17017,1160),(45949,1160),(45905,1160),(17017,1160),(45949,1160),(45905,1160),(17017,1160),(45949,1160),(45905,1160),(17017,1160),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(12577,1159),(54366,1159),(45890,1159),(46408,1159),(45949,1158),(61423,1158),(45949,1158),(61423,1158),(45949,1158),(61423,1158),(45949,1158),(61423,1158),(45949,1158),(61423,1158),(45949,1158),(61423,1158),(45949,1158),(61423,1158),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1148),(12550,1148),(45860,1148),(45837,1148),(170438,1149),(45862,1149),(45988,1149),(170438,1149),(45862,1149),(45988,1149),(170438,1149),(45862,1149),(45988,1149),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(46039,1157),(45949,935),(53108,935),(12694,935),(99009,935),(46408,935),(45949,935),(53108,935),(12694,935),(99009,935),(46408,935),(45949,935),(53108,935),(12694,935),(99009,935),(46408,935),(45949,935),(53108,935),(12694,935),(99009,935),(46408,935),(45949,935),(53108,935),(12694,935),(99009,935),(46408,935),(45849,1),(45849,1),(45849,1),(45849,1),(45849,1),(45849,1),(45849,1),(45890,47),(45891,47),(45860,47),(46092,47),(45949,935),(53108,935),(12694,935),(99009,935),(46408,935),(45949,935),(53108,935),(12694,935),(99009,935),(46408,935),(45949,935),(53108,935),(12694,935),(99009,935),(46408,935),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(45949,935),(53108,935),(12694,935),(99009,935),(46408,935),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(61807,1142),(172501,1142),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(61807,1107),(98542,1107),(61807,1107),(98542,1107),(61807,1107),(98542,1107),(61807,1157),(172501,1157),(61807,1107),(98542,1107),(45855,2),(46309,2),(45855,2),(46309,2),(12577,10),(46729,10),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(185521,1145),(155500,1145),(54333,1145),(177037,1145),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(12577,10),(46729,10),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,116),(45970,116),(45949,116),(45970,116),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45926,1154),(45967,1154),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(45926,1153),(19841,1153),(45926,1153),(19841,1153),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(170438,1156),(12399,1156),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1155),(184822,1155),(48109,1155),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45949,1153),(46038,1153),(17336,1153),(64478,1153),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1151),(92225,1151),(92225,1151),(92225,1151),(92225,1041),(92225,1041),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(92081,1150),(45912,1150),(46889,12),(46889,12),(45854,5),(45857,5),(45854,5),(45857,5),(45854,5),(45857,5),(45854,5),(45857,5),(45854,5),(45857,5),(45854,5),(45857,5),(45854,5),(45857,5),(45854,5),(45857,5),(45854,5),(45857,5),(45854,5),(45857,5),(45854,5),(45857,5),(45854,5),(45857,5),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(45949,116),(45970,116),(45949,116),(45970,116),(54366,1108),(99014,1108),(99013,1108),(39473,1108),(45889,1108),(47053,1108),(54366,1109),(99014,1109),(99016,1109),(45915,1109),(45860,1109),(99015,1109),(48220,1109),(47666,1109),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(45868,1146),(57506,121),(92086,121),(92085,121),(45838,121),(45860,121),(45919,121),(45900,121),(46038,121),(92085,121),(46197,121),(46215,121),(47083,121),(45835,121),(91183,121),(52086,120),(45936,120),(45935,120),(45860,120),(39473,120),(45900,120),(45839,120),(45267,120),(64237,120),(46039,120),(46215,120),(91181,120),(58804,119),(58803,119),(45850,119),(45839,119),(45919,119),(46430,119),(198,119),(45856,119),(45858,119),(45853,119),(59019,117),(52086,117),(45936,117),(45935,117),(45860,117),(39473,117),(45900,117),(45839,117),(45267,117),(53404,117),(92081,117),(45912,117),(57506,116),(92086,116),(92085,116),(45838,116),(45860,116),(45919,116),(45900,116),(46038,116),(92085,116),(63584,116),(91177,116),(45839,116),(91177,116),(46038,116),(57590,115),(46096,115),(65910,115),(46026,115),(46096,115),(45919,115),(46100,115),(46098,115),(57590,114),(46096,114),(65910,114),(46026,114),(46096,114),(45919,114),(46099,114),(46098,114),(59019,113),(52086,113),(45936,113),(45935,113),(45860,113),(39473,113),(45900,113),(45839,113),(45267,113),(53404,113),(92081,113),(45912,113),(59019,112),(52086,112),(45936,112),(45935,112),(45860,112),(39473,112),(45900,112),(45839,112),(45267,112),(53404,112),(92081,112),(45912,112),(48094,111),(39686,111),(46093,111),(63584,111),(39686,111),(45867,111),(46093,111),(62470,111),(62524,111),(39654,111),(39686,110),(46093,110),(63584,110),(39686,110),(45867,110),(46093,110),(62470,110),(46197,110),(46241,110),(62619,110),(48094,109),(46040,109),(46039,109),(63584,109),(46040,109),(46039,109),(62470,109),(62524,109),(39654,109),(46040,108),(46039,108),(63584,108),(46040,108),(46039,108),(92097,108),(46438,108),(46197,108),(46241,108),(62619,108),(63133,107),(46040,107),(46039,107),(63584,107),(46040,107),(46039,107),(63132,107),(46408,107),(46197,107),(46241,107),(62619,107),(57664,105),(57632,105),(46091,105),(45839,105),(46086,105),(45868,105),(45839,105),(46086,105),(45868,105),(45945,104),(45945,104),(51206,104),(57673,940),(51197,940),(51198,940),(45839,940),(46017,940),(8092,940),(46889,940),(45852,940),(57511,102),(52086,102),(45936,102),(45935,102),(45860,102),(39473,102),(45900,102),(45839,102),(46201,102),(45267,102),(53404,102),(46201,102),(46039,102),(92096,101),(91133,101),(92095,101),(61807,101),(46164,101),(46061,99),(92094,99),(50303,99),(52593,99),(46402,99),(51352,99),(54169,99),(45913,99),(46061,98),(92094,98),(50303,98),(52593,98),(46402,98),(51352,98),(54169,98),(46039,98),(59019,97),(52086,97),(45936,97),(45935,97),(45860,97),(39473,97),(45900,97),(45839,97),(45267,97),(53404,97),(92081,97),(45912,97),(57634,96),(46040,96),(46039,96),(63584,96),(46040,96),(46039,96),(46215,96),(45996,96),(46039,96),(57673,941),(50858,941),(51198,941),(45839,941),(46017,941),(8092,941),(46889,941),(49743,941),(50856,941),(8164,941),(64212,94),(52084,94),(91095,94),(45935,94),(45900,94),(45839,94),(46488,94),(50841,94),(91106,94),(46026,94),(91131,94),(17340,94),(52084,94),(12709,93),(92093,93),(45949,93),(2719,93),(12709,93),(92093,93),(45949,93),(2719,93),(46036,93),(57506,92),(92086,92),(92085,92),(45838,92),(45860,92),(45919,92),(45900,92),(46038,92),(92085,92),(46197,92),(46215,92),(47083,92),(46197,92),(46215,92),(47083,92),(57506,91),(92086,91),(92085,91),(45838,91),(45860,91),(45919,91),(45900,91),(46038,91),(92085,91),(45922,91),(46215,91),(47083,91),(45922,91),(46215,91),(47083,91),(59019,90),(52086,90),(45936,90),(45935,90),(45860,90),(39473,90),(45900,90),(45839,90),(45267,90),(53404,90),(92081,90),(45912,90),(57506,89),(92086,89),(57904,89),(92085,89),(45838,89),(45860,89),(45919,89),(45900,89),(46038,89),(92085,89),(54366,89),(45970,89),(40038,89),(46123,89),(57664,88),(60627,88),(46898,88),(45889,88),(46086,88),(46904,88),(57729,88),(91146,88),(59019,87),(52086,87),(45936,87),(45935,87),(45860,87),(39473,87),(45900,87),(45839,87),(45267,87),(53404,87),(92081,87),(45912,87),(59019,86),(52086,86),(45936,86),(45935,86),(45860,86),(39473,86),(45900,86),(45839,86),(45267,86),(53404,86),(92081,86),(45912,86),(57511,85),(52084,85),(91095,85),(45935,85),(45900,85),(45839,85),(46201,85),(57664,84),(60627,84),(46898,84),(45889,84),(46086,84),(46542,84),(40431,84),(59918,84),(47664,84),(92092,83),(92091,83),(59056,83),(46014,83),(59056,83),(45843,83),(61627,83),(56965,83),(59019,82),(52086,82),(45936,82),(45935,82),(45860,82),(39473,82),(45900,82),(45839,82),(45267,82),(53404,82),(92081,82),(45912,82),(45850,81),(45839,81),(45919,81),(46430,81),(46013,81),(57506,80),(92086,80),(57904,80),(92085,80),(45838,80),(45860,80),(45919,80),(45900,80),(46038,80),(92085,80),(54366,80),(45970,80),(40038,80),(51925,80),(91136,75),(49170,75),(91136,75),(45849,75),(91136,75),(91134,74),(49170,74),(92090,74),(45849,74),(91134,74),(59019,73),(52086,73),(45936,73),(45935,73),(45860,73),(39473,73),(45900,73),(45839,73),(45267,73),(53404,73),(92081,73),(45912,73),(59019,72),(52086,72),(45936,72),(45935,72),(45860,72),(39473,72),(45900,72),(45839,72),(45267,72),(53404,72),(92081,72),(45912,72),(92089,71),(91133,71),(17336,71),(45860,71),(12399,71),(12709,71),(17336,71),(12399,71),(12709,71),(64212,70),(52086,70),(45936,70),(45935,70),(45860,70),(39473,70),(45900,70),(45839,70),(45267,70),(53404,70),(46488,70),(50841,70),(91106,70),(46026,70),(91131,70),(17340,70),(52086,70),(92084,69),(59056,69),(45919,69),(43199,69),(16345,69),(46074,69),(46026,69),(66387,69),(45926,69),(12399,69),(46878,68),(45946,68),(45947,68),(45946,68),(45926,68),(12399,68),(45945,67),(45945,67),(45926,67),(12399,67),(45944,66),(59056,66),(8087,66),(45860,66),(39473,66),(46162,66),(51555,66),(12709,66),(46461,66),(45944,65),(59056,65),(8087,65),(45860,65),(39473,65),(46162,65),(51555,65),(12399,65),(92088,64),(49170,64),(65895,64),(92087,64),(17223,64),(64212,63),(45839,63),(47581,63),(47159,63),(45921,63),(52084,62),(91095,62),(45935,62),(45900,62),(45839,62),(46039,62),(45925,61),(49771,61),(45867,61),(12399,61),(45926,61),(51543,61),(51588,61),(45925,60),(49771,60),(45867,60),(12399,60),(45926,60),(12709,60),(45925,59),(49771,59),(45867,59),(12399,59),(45926,59),(12399,59),(57506,58),(92086,58),(92085,58),(45838,58),(45860,58),(45919,58),(45900,58),(46038,58),(92085,58),(12577,58),(54366,58),(45890,58),(46408,58),(45923,58),(45924,58),(12577,58),(54366,58),(45890,58),(46408,58),(57506,57),(92086,57),(92085,57),(45838,57),(45860,57),(45919,57),(45900,57),(46038,57),(92085,57),(12577,57),(54366,57),(45890,57),(46408,57),(45923,57),(45922,57),(12577,57),(54366,57),(45890,57),(46408,57),(92084,56),(59056,56),(45919,56),(43199,56),(53401,56),(46038,56),(45926,56),(12399,56),(46038,55),(63807,55),(46038,55),(46089,55),(91034,55),(46299,55),(91133,55),(46847,55),(63093,55),(63059,55),(58163,54),(57901,54),(57673,54),(45908,54),(45839,54),(1053,54),(46007,54),(52678,54),(45879,54),(46889,54),(45910,54),(45917,54),(45850,53),(45839,53),(45919,53),(46430,53),(11927,53),(11926,53),(46571,53),(91113,53),(45849,53),(45890,53),(46408,53),(45850,53),(59019,52),(52086,52),(45936,52),(45935,52),(45860,52),(39473,52),(45900,52),(45839,52),(45267,52),(53404,52),(92081,52),(45912,52),(45850,51),(45839,51),(45919,51),(46430,51),(92083,51),(47047,51),(45849,51),(58163,50),(57901,50),(57673,50),(45908,50),(45839,50),(1053,50),(46007,50),(52678,50),(45879,50),(46889,50),(45910,50),(45909,50),(45850,49),(45839,49),(45919,49),(46430,49),(45893,49),(90366,48),(45898,48),(45898,48),(46878,48),(45900,48),(49014,48),(90365,48),(45850,47),(45839,47),(45919,47),(46430,47),(45890,47),(45891,47),(45860,47),(46092,47),(45850,46),(45839,46),(45919,46),(46430,46),(46092,46),(45892,46),(45891,46),(58163,45),(57673,45),(45904,45),(45839,45),(1053,45),(46007,45),(52678,45),(46889,45),(46039,45),(64212,44),(52086,44),(45936,44),(45935,44),(45860,44),(39473,44),(45900,44),(45839,44),(45267,44),(53404,44),(46488,44),(50841,44),(91106,44),(46026,44),(91105,44),(46026,44),(46039,44),(52086,44),(57673,43),(92082,43),(50303,43),(52593,43),(45903,43),(45902,43),(46889,43),(92082,43),(45850,42),(45839,42),(45919,42),(46430,42),(45943,42),(59019,41),(52086,41),(45936,41),(45935,41),(45860,41),(39473,41),(45900,41),(45839,41),(45267,41),(53404,41),(92081,41),(45912,41),(57673,40),(58964,40),(53404,40),(45839,40),(91099,40),(52306,40),(46889,40),(46039,40),(45898,39),(45898,39),(46878,39),(45900,39),(49014,39),(46650,39),(45850,38),(45839,38),(45919,38),(46430,38),(45896,38),(45895,38),(52084,36),(91095,36),(45935,36),(45900,36),(45839,36),(52085,36),(52086,35),(45936,35),(45935,35),(45860,35),(39473,35),(45900,35),(45839,35),(45267,35),(53404,35),(46039,35),(57511,34),(52086,34),(45936,34),(45935,34),(45860,34),(39473,34),(45900,34),(45839,34),(46201,34),(45267,34),(46803,34),(46039,34),(57557,33),(45850,33),(45839,33),(45919,33),(46430,33),(45894,33),(12664,33),(45860,33),(45893,33),(45850,32),(45839,32),(45919,32),(46430,32),(51446,32),(45892,32),(45891,32),(45850,31),(45839,31),(45919,31),(46430,31),(45890,31),(43307,31),(57652,30),(45850,30),(45839,30),(45919,30),(46430,30),(45889,30),(16435,30),(57673,29),(51198,29),(45839,29),(46017,29),(8092,29),(46889,29),(45881,29),(45888,29),(45887,29),(57673,28),(51198,28),(45839,28),(46017,28),(8092,28),(46889,28),(45886,28),(45885,28),(8020,28),(57673,27),(51198,27),(45839,27),(46017,27),(8092,27),(46889,27),(45869,27),(8092,27),(57673,26),(51198,26),(45839,26),(46017,26),(8092,26),(46889,26),(1053,26),(45883,26),(16233,26),(57673,25),(51198,25),(45839,25),(46017,25),(8092,25),(46889,25),(45881,25),(45880,25),(57673,24),(57901,24),(51198,24),(45839,24),(46017,24),(8092,24),(46889,24),(45879,24),(57673,23),(51198,23),(45839,23),(46017,23),(8092,23),(46889,23),(45878,23),(91074,23),(57673,22),(51198,22),(45839,22),(46017,22),(8092,22),(46889,22),(45876,22),(57673,21),(51198,21),(45839,21),(46017,21),(8092,21),(46889,21),(16963,21),(57673,20),(57491,20),(51198,20),(45839,20),(46017,20),(8092,20),(46889,20),(45837,20),(57673,19),(45875,19),(45839,19),(48607,19),(46051,19),(45860,19),(8092,19),(46889,19),(50440,19),(51164,19),(57673,18),(45875,18),(45839,18),(48607,18),(46051,18),(45860,18),(8092,18),(46889,18),(92079,18),(47174,18),(57673,17),(57624,17),(45875,17),(45839,17),(48607,17),(46051,17),(45860,17),(8092,17),(46889,17),(50440,17),(46680,17),(57673,16),(45875,16),(45839,16),(48607,16),(46051,16),(45860,16),(8092,16),(46889,16),(45872,16),(57673,15),(45875,15),(45839,15),(48607,15),(46051,15),(45860,15),(8092,15),(46889,15),(48607,15),(57673,14),(45875,14),(45839,14),(48607,14),(46051,14),(45860,14),(8092,14),(46889,14),(45874,14),(57673,13),(45875,13),(45839,13),(48607,13),(46051,13),(45860,13),(8092,13),(46889,13),(45873,13),(57506,12),(57673,12),(92078,12),(45839,12),(45838,12),(47159,12),(46889,12),(45850,11),(45839,11),(45919,11),(46430,11),(45851,11),(12694,11),(57506,10),(92078,10),(45839,10),(45838,10),(47159,10),(12577,10),(46729,10),(57673,9),(51198,9),(45839,9),(46017,9),(8092,9),(46889,9),(45884,9),(45850,8),(45839,8),(45919,8),(46430,8),(198,8),(45856,8),(57770,7),(45850,7),(45839,7),(45919,7),(46430,7),(45861,7),(45860,7),(45859,7),(57511,6),(52086,6),(45936,6),(45935,6),(45860,6),(39473,6),(45900,6),(45839,6),(46201,6),(45267,6),(46802,6),(46039,6),(45850,5),(45839,5),(45919,5),(46430,5),(45854,5),(45857,5),(45850,4),(45839,4),(45919,4),(46430,4),(16220,4),(45860,4),(889,4),(58804,3),(58803,3),(45850,3),(45839,3),(45919,3),(46430,3),(45858,3),(45853,3),(45850,2),(45839,2),(45919,2),(46430,2),(45855,2),(46309,2),(45850,1),(45839,1),(45919,1),(46430,1),(45849,1),(45889,1108),(46898,1108),(60627,1108),(45855,1108),(57664,1108),(47666,1109),(750,1109),(48148,1109),(45860,1109),(45915,1109),(45869,1109),(61578,1109),(46408,1109),(45890,1109),(54366,1109),(46086,1109),(45889,1109),(46898,1109),(60627,1109),(57664,1109),(92114,1110),(49170,1110),(45922,1110),(92114,1110),(49170,1110),(92114,1110),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(92225,1041),(92225,1106),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(45912,1111),(92081,1111),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(45849,1),(45849,1),(45849,1),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(98542,1107),(61807,1107),(98542,1107),(61807,1107),(98542,1107),(61807,1107),(98542,1107),(61807,1107),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(45912,1112),(92081,1112),(46123,89),(40038,89),(46123,89),(40038,89),(46123,89),(40038,89),(46123,89),(40038,89),(46123,89),(40038,89),(46123,89),(40038,89),(46123,89),(40038,89),(46123,89),(40038,89),(46123,89),(40038,89),(46123,89),(40038,89),(46123,89),(40038,89),(46123,89),(40038,89),(45849,1),(45849,1),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(45912,1113),(92081,1113),(52086,44),(46039,44),(46026,44),(91105,44),(46026,44),(91106,44),(98997,44),(46488,44),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45837,20),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(45884,9),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(12577,944),(45928,944),(16963,944),(48767,944),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(16963,21),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(46451,942),(8164,942),(50856,942),(49743,942),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(8164,941),(50856,941),(49743,941),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(12577,943),(45873,943),(16963,943),(48767,943),(16435,30),(45889,30),(46123,89),(40038,89),(46123,89),(40038,89),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46892,1115),(54017,1115),(48231,1115),(45949,1115),(46127,1116),(47042,1116),(45999,1116),(52362,1116),(46127,1116),(47042,1116),(45999,1116),(52362,1116),(46127,1116),(47042,1116),(45999,1116),(52362,1116),(46127,1116),(47042,1116),(45999,1116),(52362,1116),(46127,1116),(47042,1116),(45999,1116),(52362,1116),(46127,1116),(47042,1116),(45999,1116),(52362,1116),(46127,1116),(47042,1116),(45999,1116),(52362,1116),(46127,1116),(47042,1116),(45999,1116),(52362,1116),(46127,1116),(47042,1116),(45999,1116),(52362,1116),(46127,1116),(47042,1116),(45999,1116),(52362,1116),(46127,1116),(47042,1116),(45999,1116),(52362,1116),(46127,1116),(47042,1116),(45999,1116),(52362,1116),(46127,1116),(47042,1116),(45999,1116),(52362,1116),(45912,1114),(92081,1114),(45912,1114),(92081,1114),(45912,1114),(92081,1114),(45912,1114),(92081,1114),(45912,1114),(92081,1114),(45912,1114),(92081,1114),(45912,1114),(92081,1114),(45912,1114),(92081,1114),(45912,1114),(92081,1114),(45912,1114),(92081,1114),(45912,1114),(92081,1114),(45912,1114),(92081,1114),(45912,1114),(92081,1114),(45912,1114),(92081,1114),(45912,1114),(92081,1114),(45912,1114),(92081,1114),(45912,1114),(92081,1114),(45912,1114),(92081,1114),(45912,1114),(92081,1114),(92225,1041),(92225,1106),(46038,116),(91177,116),(45839,116),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(46127,1116),(47042,1116),(45999,1116),(52362,1116),(46127,1116),(47042,1116),(45999,1116),(52362,1116),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(51925,80),(40038,80),(45849,1),(45849,1),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(156328,1117),(45949,1117),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(45912,1118),(92081,1118),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(50430,1119),(45922,1119),(45949,1119),(50430,1119),(45922,1119),(45949,1119),(50430,1119),(45922,1119),(45949,1119),(50430,1119),(45922,1119),(45949,1119),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(46123,89),(40038,89),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(45970,116),(45949,116),(46123,89),(40038,89),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(45853,3),(45858,3),(45856,1120),(198,1120),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45859,7),(45860,7),(45861,7),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(92136,71),(92136,71),(92136,71),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(63028,949),(98542,1107),(61807,1107),(47083,1120),(46215,1120),(44028,1120),(47083,1120),(46215,1120),(44028,1120),(47083,1120),(46215,1120),(44028,1120),(47083,1120),(46215,1120),(44028,1120),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(46309,2),(45855,2),(12694,11),(45851,11),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46309,2),(45855,2),(12694,11),(45851,11),(63028,949),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(52774,1125),(45890,1125),(45849,1),(45849,1),(45849,1),(45849,1),(45849,1),(45849,1),(45849,1),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(45849,1),(92114,1110),(49170,1110),(45922,1110),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(45849,940),(45913,940),(45849,940),(45913,940),(45849,940),(45913,940),(45849,1),(45849,1),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(46092,47),(45860,47),(45891,47),(45890,47),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(46408,57),(45890,57),(54366,57),(12577,57),(46006,57),(99002,57),(46408,57),(45890,57),(54366,57),(12577,57),(46006,57),(99002,57),(46408,57),(45890,57),(54366,57),(12577,57),(46006,57),(99002,57),(46408,57),(45890,57),(54366,57),(12577,57),(46006,57),(99002,57),(45912,1121),(92081,1121),(45912,1121),(92081,1121),(46039,957),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(167173,1127),(46923,1127),(40029,1127),(45860,1127),(167174,1127),(45949,1127),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52345,1127),(155880,1127),(45949,1127),(46026,1127),(167096,1127),(153792,1127),(52345,1127),(155880,1127),(45949,1127),(46026,1127),(167096,1127),(153792,1127),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1127),(155880,1127),(45949,1127),(46026,1127),(167096,1127),(153792,1127),(52345,1127),(155880,1127),(45949,1127),(46026,1127),(167096,1127),(153792,1127),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1127),(155880,1127),(45949,1127),(46026,1127),(167096,1127),(153792,1127),(52345,1127),(155880,1127),(45949,1127),(46026,1127),(167096,1127),(153792,1127),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1127),(155880,1127),(45949,1127),(46026,1127),(167096,1127),(153792,1127),(52345,1127),(155880,1127),(45949,1127),(46026,1127),(167096,1127),(153792,1127),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1127),(155880,1127),(45949,1127),(46026,1127),(167096,1127),(153792,1127),(52345,1127),(155880,1127),(45949,1127),(46026,1127),(167096,1127),(153792,1127),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1127),(155880,1127),(45949,1127),(46026,1127),(167096,1127),(153792,1127),(52345,1127),(155880,1127),(45949,1127),(46026,1127),(167096,1127),(153792,1127),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1127),(155880,1127),(45949,1127),(46026,1127),(167096,1127),(153792,1127),(52345,1127),(155880,1127),(45949,1127),(46026,1127),(167096,1127),(153792,1127),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1127),(155880,1127),(45949,1127),(46026,1127),(167096,1127),(153792,1127),(52345,1127),(155880,1127),(45949,1127),(46026,1127),(167096,1127),(153792,1127),(167096,1133),(39470,1133),(167096,1133),(39470,1133),(167096,1132),(46299,1132),(54459,1132),(167096,1132),(46299,1132),(54459,1132),(167096,1131),(153792,1131),(167096,1131),(153792,1131),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1129),(155880,1129),(45949,1129),(46026,1129),(167096,1129),(39470,1129),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52345,1128),(155880,1128),(45949,1128),(46026,1128),(167096,1128),(46299,1128),(54459,1128),(52590,1130),(46414,1130),(52590,1130),(46414,1130),(52345,1127),(155880,1127),(45949,1127),(46026,1127),(167096,1127),(153792,1127),(52345,1127),(155880,1127),(45949,1127),(46026,1127),(167096,1127),(153792,1127),(45970,116),(45949,116),(47083,1120),(46215,1120),(44028,1120),(47083,1120),(46215,1120),(44028,1120),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136); INSERT INTO `datasetnamemap` VALUES (52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(167104,1135),(51811,1135),(45860,1135),(168602,1135),(45979,1135),(40029,1135),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52345,1134),(155880,1134),(45949,1134),(46026,1134),(52590,1134),(46414,1134),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(52361,1136),(46779,1136),(169352,1136),(45949,1136),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(46176,1137),(52352,1137),(45860,1137),(52565,1137),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(91177,1138),(131512,1138),(52307,1138),(170021,1138),(45970,116),(45949,116),(45970,116),(45949,116),(45849,1),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(16435,30),(45889,30),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(62543,1139),(39190,1139),(62543,1139),(39190,1139),(62543,1139),(39190,1139),(62543,1139),(39190,1139),(62543,1139),(39190,1139),(62543,1139),(39190,1139),(62543,1139),(39190,1139),(62543,1139),(39190,1139),(62543,1139),(39190,1139),(62543,1139),(39190,1139),(62543,1139),(39190,1139),(62543,1139),(39190,1139),(62543,1139),(39190,1139),(62543,1139),(39190,1139),(62543,1139),(39190,1139),(62543,1139),(39190,1139),(62543,1139),(39190,1139),(62543,1139),(39190,1139),(62543,1139),(39190,1139),(62543,1139),(39190,1139),(62543,1139),(39190,1139),(62543,1139),(39190,1139),(46039,1020),(46006,1020),(46201,1020),(46039,1020),(46006,1020),(46201,1020),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45912,1126),(92081,1126),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45868,1140),(45893,49),(45893,49),(45893,49),(45893,49),(126108,1142),(126108,1142),(126108,1142),(126108,1142),(126108,1142),(126108,1142),(126108,1142),(126108,1142),(126108,1142),(126108,1142),(172501,1142),(61807,1142),(172501,1142),(61807,1142),(172501,1142),(61807,1142),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(46039,1141),(172501,1142),(61807,1142),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(45970,1143),(46309,1143),(45855,1143),(46309,2),(45855,2),(45849,1),(45849,1),(45849,1),(45849,1),(45849,1),(92225,1144),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(166230,1124),(166231,1124),(52377,1124),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(177037,1145),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(166159,1123),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(54494,1122),(177037,1145),(177037,1145),(177037,1145),(45895,38),(45896,38),(45895,38),(45896,38),(45895,38),(45896,38),(45895,38),(45896,38),(45895,38),(45896,38),(45895,38),(45896,38),(45895,38),(45896,38),(45895,38),(45896,38),(45895,38),(45896,38),(46889,1082),(99012,1082),(45859,7),(45860,7),(45861,7),(45859,7),(45860,7),(45861,7),(45859,7),(45860,7),(45861,7),(45859,7),(45860,7),(45861,7),(45859,7),(45860,7),(45861,7),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(92225,1144),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45868,1146),(46086,1146),(45839,1146),(45868,1146),(46086,1146),(45839,1146),(45868,1146),(46086,1146),(45839,1146),(45868,1146),(46086,1146),(45839,1146),(45868,1146),(46086,1146),(45839,1146),(45868,1146),(46086,1146),(45839,1146),(45868,1146),(46086,1146),(45839,1146),(45868,1146),(46086,1146),(45839,1146),(45868,1146),(46086,1146),(45839,1146),(45868,1146),(46086,1146),(45839,1146),(45868,1146),(46086,1146),(45839,1146),(45868,1146),(46086,1146),(45839,1146),(45868,1146),(46086,1146),(45839,1146),(45868,1146),(46086,1146),(45839,1146),(45868,1146),(46086,1146),(45839,1146),(45868,1146),(46086,1146),(45839,1146),(45868,1146),(46086,1146),(45839,1146),(45868,1146),(46086,1146),(45839,1146),(45868,1146),(46086,1146),(45839,1146),(45868,1146),(46086,1146),(45839,1146),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(46889,12),(46889,12),(46889,12),(46889,12),(46889,12),(46889,12),(46889,12),(46889,12),(46889,12),(46889,12),(46889,12),(46889,12),(46889,12),(46889,12),(46889,12),(46889,12),(46889,12),(46889,12),(46889,12),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(45912,1147),(92081,1147),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(12399,59),(45926,59),(12709,60),(45926,60),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(92225,1041),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(46010,1171),(48748,1171),(45949,1171),(46010,1171),(48748,1171),(45949,1171),(46010,1171),(48748,1171),(45949,1171),(46010,1171),(48748,1171),(45949,1171),(46010,1171),(48748,1171),(45949,1171),(46010,1171),(48748,1171),(45949,1171),(46010,1171),(48748,1171),(45949,1171),(46010,1171),(48748,1171),(45949,1171),(46010,1171),(48748,1171),(45949,1171),(46010,1171),(48748,1171),(45949,1171),(46010,1171),(48748,1171),(45949,1171),(8087,1172),(17079,1172),(46200,1172),(54487,1172),(45979,1172),(45837,1172),(17119,1172),(45860,1172),(45851,1172),(46200,1172),(46883,1172),(8087,1172),(17079,1172),(46200,1172),(54487,1172),(45979,1172),(45837,1172),(17119,1172),(45860,1172),(45851,1172),(46200,1172),(46883,1172),(8087,1172),(17079,1172),(46200,1172),(54487,1172),(45979,1172),(45837,1172),(17119,1172),(45860,1172),(45851,1172),(46200,1172),(46883,1172),(8087,1172),(17079,1172),(46200,1172),(54487,1172),(45979,1172),(45837,1172),(17119,1172),(45860,1172),(45851,1172),(46200,1172),(46883,1172),(8087,1172),(17079,1172),(46200,1172),(54487,1172),(45979,1172),(45837,1172),(17119,1172),(45860,1172),(45851,1172),(46200,1172),(46883,1172),(8087,1172),(17079,1172),(46200,1172),(54487,1172),(45979,1172),(45837,1172),(17119,1172),(45860,1172),(45851,1172),(46200,1172),(46883,1172),(8087,1172),(17079,1172),(46200,1172),(54487,1172),(45979,1172),(45837,1172),(17119,1172),(45860,1172),(45851,1172),(46200,1172),(46883,1172),(8087,1172),(17079,1172),(46200,1172),(54487,1172),(45979,1172),(45837,1172),(17119,1172),(45860,1172),(45851,1172),(46200,1172),(46883,1172),(8087,1172),(17079,1172),(46200,1172),(54487,1172),(45979,1172),(45837,1172),(17119,1172),(45860,1172),(45851,1172),(46200,1172),(46883,1172),(8087,1172),(17079,1172),(46200,1172),(54487,1172),(45979,1172),(45837,1172),(17119,1172),(45860,1172),(45851,1172),(46200,1172),(46883,1172),(8087,1172),(17079,1172),(46200,1172),(54487,1172),(45979,1172),(45837,1172),(17119,1172),(45860,1172),(45851,1172),(46200,1172),(46883,1172),(191954,1170),(45849,1),(45849,1),(45849,1),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(63028,949),(41978,1173),(46082,1173),(45979,1173),(191890,1173),(41978,1173),(46082,1173),(45979,1173),(191890,1173),(41978,1173),(46082,1173),(45979,1173),(191890,1173),(41978,1173),(46082,1173),(45979,1173),(191890,1173),(41978,1173),(46082,1173),(45979,1173),(191890,1173),(41978,1173),(46082,1173),(45979,1173),(191890,1173),(41978,1173),(46082,1173),(45979,1173),(191890,1173),(63028,949),(63028,949),(63028,949),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46024,1174),(45860,1174),(45933,1174),(99014,1174),(46215,1174),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46309,2),(45855,2),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45895,38),(45896,38),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45970,116),(45949,116),(45857,5),(45854,5),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(12694,11),(45851,11),(12694,11),(45851,11),(12694,11),(45851,11),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85); INSERT INTO `datasetnamemap` VALUES (46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(46201,85),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45912,1175),(45913,1175),(45970,1176),(45949,1176),(45970,1176),(45949,1176),(45970,1176),(45949,1176),(45970,1176),(45949,1176),(45970,1176),(45949,1176),(45970,1176),(45949,1176),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(92136,71),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(46039,1176),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(45970,116),(45949,116),(46309,2),(45855,2),(46309,2),(45855,2),(92136,71),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(92136,71),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45853,119),(99007,119),(198,119),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(45988,1149),(45862,1149),(170438,1149),(46889,12),(46889,12),(46889,12),(46889,12),(46889,12),(46889,12),(46889,12),(46889,12),(45970,116),(45949,116),(45943,42),(46889,12),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45943,42),(45970,116),(45949,116),(98542,1107),(61807,1107),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45970,116),(45949,116),(45970,116),(45949,116),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148),(45837,1148),(45860,1148),(12550,1148),(170438,1148); UNLOCK TABLES; /*!40000 ALTER TABLE `datasetnamemap` ENABLE KEYS */; -- -- Table structure for table `datatype` -- DROP TABLE IF EXISTS `datatype`; CREATE TABLE `datatype` ( `datatypeid` smallint(6) NOT NULL default '0', `datatypechar` char(1) default NULL, `width` tinyint(4) default NULL, `decimals` int(11) default NULL, `description` varchar(255) default NULL, PRIMARY KEY (`datatypeid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `datatype` -- /*!40000 ALTER TABLE `datatype` DISABLE KEYS */; LOCK TABLES `datatype` WRITE; INSERT INTO `datatype` VALUES (1,'B',10,0,'Binary -- Integer'),(2,'C',8,0,'Character -- Minimum size'),(3,'T',5,0,'Time -- Military time HH:MM'),(4,'C',15,0,'Character -- Minimum 15'),(6,'I',10,4,'4 implied decimals,5 digits to left of decimal'),(7,'I',10,3,'3 implied decimals,6 digits to left of decimal'),(8,'I',7,2,'2 implied decimals, 4 digits to left of decimal'),(9,'I',5,2,'2 implied decimals, 2 digits to left of decimal'),(10,'I',4,1,'1 implied decimal, 2 digits to the left of the decimal'),(11,'I',10,8,'8 implied decimal, 1 digit to the left of the decimal'),(12,'I',8,6,'6 implied decimal, 1 digit to the left of the decimal'),(13,'I',6,2,'2 implied decimals, 3 digits to the left of the decimal'),(14,'F',12,9,'Float with 2 digits to left of dec and 9 digits to the right'),(15,'I',13,5,'5 implied decimals, 7 digits to the left of decimal'),(16,'I',10,2,'2 implied decimals, 7 digits to left of decimal'),(17,'I',13,6,'6 implied decimals, 6 digits to the left of decimal'),(18,'I',8,2,'2 implied decimals, 5 to the left of decimal'),(19,'I',9,2,'2 implied decimals, 6 to the left of decimal'),(20,'I',4,2,'2 implied decimals, 1 to the left of decimal'),(21,'I',6,3,'3 implied decimals, 2 to the left of decimal'),(22,'F',4,1,'Float with 2 digits to left of dec and 1 digit to right'),(23,'F',5,1,'Float with 3 digits to left of dec and 1 digit to right'),(24,'F',5,2,'Float with 2 digits to left of dec and 2 digits to right'),(25,'F',6,1,'Float with 4 digits to left of dec and 1 digit to right'),(26,'F',6,2,'Float with 3 digits to left of dec and 2 digits to right'),(27,'F',8,1,'Float with 6 digits to left of dec and 1 digit to right'),(28,'I',7,1,'1 implied decimal, 5 digits to the left of decimal'),(29,'I',5,1,'1 implied decimal, 3 digits to the left of decimal'),(30,'I',9,3,'3 implied decimals, 5 digits to the left of decimal'),(31,'I',11,4,'4 implied decimals, 6 digits to the left of decimal'),(32,'I',8,4,'4 implied decimals, 3 digits to the left of decimal'),(33,'F',15,0,'Float with 15 digits, no decimals'),(34,'I',4,3,'3 implied decimals'),(35,'I',3,1,'1 implied decimals'),(36,'C',2,0,'Character - width'),(37,'C',7,0,'Character - width'),(38,'C',1,0,'Character - width'),(39,'C',30,0,'Character - width'),(40,'C',25,0,'Character - width'),(41,'C',18,0,'Character - width'),(42,'I',6,1,'Type Created by MIX'),(43,'C',14,0,'Character - width'),(44,'C',35,0,'Character - width'),(45,'C',29,0,'Character - width'),(46,'I',8,1,'Type Created by MIX'),(47,'C',60,0,'Character - width'),(48,'C',20,0,'Character - width'),(49,'C',50,0,'Character - width'),(50,'C',45,0,'Character - width'),(51,'C',6,0,'Character - width'),(52,'C',100,0,'Character - width'),(53,'C',4,0,'Character - width'),(54,'C',12,0,'Character - width'),(55,'C',3,0,'Character - width'),(56,'C',5,0,'Character - width'),(57,'F',13,5,'Float with 7to left of dec and 5 to right'),(58,'C',10,0,'Character - width'),(59,'C',33,0,'Character - width'),(60,'C',13,0,'Character - width'),(61,'F',14,6,'Float w/7 to left and 6 to right'),(62,'C',21,0,'Character - width'),(63,'C',127,0,'Character - width'),(64,'C',80,0,'Character - width'),(65,'I',11,2,'Type Created by MIX'),(66,'C',24,0,'Character - width'),(67,'C',34,0,'Character - width'),(68,'C',90,0,'Character - width'),(69,'C',127,0,'Character - width'),(70,'C',127,0,'Character - width'),(71,'I',3,0,'Type Created by MIX'),(72,'I',5,0,'Type Created by MIX'),(73,'I',7,0,'Type Created by MIX'),(74,'I',4,0,'Type Created by MIX'),(75,'I',2,0,'Type Created by MIX'),(76,'I',1,0,'Type Created by MIX'),(77,'C',11,0,'Character - width'),(78,'I',7,3,'Type Created by MIX'),(79,'I',12,8,'Type Created by MIX'),(80,'I',10,5,'Type Created by MIX'),(81,'C',28,0,'Character - width'),(82,'C',23,0,'Character - width'),(83,'C',9,0,'Character - width'),(84,'I',1,4,'Type Created by MIX'),(85,'C',127,0,'Character - width'),(86,'F',5,3,'Floating point 5 with 3 decimals'),(87,'C',17,0,'Character - width'),(91,'I',13,4,'Floating point with 13 and 4 decimals'); UNLOCK TABLES; /*!40000 ALTER TABLE `datatype` ENABLE KEYS */; -- -- Table structure for table `dynamic_item_map` -- DROP TABLE IF EXISTS `dynamic_item_map`; CREATE TABLE `dynamic_item_map` ( `dynamic_itemid` int(11) NOT NULL default '0', `itemid` int(11) NOT NULL default '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `dynamic_item_map` -- /*!40000 ALTER TABLE `dynamic_item_map` DISABLE KEYS */; LOCK TABLES `dynamic_item_map` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `dynamic_item_map` ENABLE KEYS */; -- -- Table structure for table `flag` -- DROP TABLE IF EXISTS `flag`; CREATE TABLE `flag` ( `itemid` int(11) NOT NULL default '0', `flagitemid` int(11) NOT NULL default '0', `flagvalueid` int(11) NOT NULL default '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `flag` -- /*!40000 ALTER TABLE `flag` DISABLE KEYS */; LOCK TABLES `flag` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `flag` ENABLE KEYS */; -- -- Table structure for table `flagvalue` -- DROP TABLE IF EXISTS `flagvalue`; CREATE TABLE `flagvalue` ( `flagvalueid` int(11) NOT NULL default '0', `value` char(2) default NULL, `behaviorind` tinyint(4) NOT NULL default '0', `replacetext` varchar(255) default NULL, `definetext` varchar(255) default NULL, `urlid` int(11) NOT NULL default '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `flagvalue` -- /*!40000 ALTER TABLE `flagvalue` DISABLE KEYS */; LOCK TABLES `flagvalue` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `flagvalue` ENABLE KEYS */; -- -- Table structure for table `formula` -- DROP TABLE IF EXISTS `formula`; CREATE TABLE `formula` ( `itemid` int(11) NOT NULL default '0', `description` varchar(255) NOT NULL default '', UNIQUE KEY `formula_ndx` (`itemid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `formula` -- /*!40000 ALTER TABLE `formula` DISABLE KEYS */; LOCK TABLES `formula` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `formula` ENABLE KEYS */; -- -- Table structure for table `formula_item` -- DROP TABLE IF EXISTS `formula_item`; CREATE TABLE `formula_item` ( `formula_itemid` int(11) NOT NULL default '0', `usedvar_itemid` int(11) NOT NULL default '0', KEY `formula_item_ndx` (`formula_itemid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `formula_item` -- /*!40000 ALTER TABLE `formula_item` DISABLE KEYS */; LOCK TABLES `formula_item` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `formula_item` ENABLE KEYS */; -- -- Table structure for table `geo_component_hierarchy` -- DROP TABLE IF EXISTS `geo_component_hierarchy`; CREATE TABLE `geo_component_hierarchy` ( `componentid` smallint(6) default NULL, `instanceid` int(11) default NULL, `hierarchyid` smallint(6) default NULL, `isgeorequired` tinyint(4) default NULL, UNIQUE KEY `comp_hierarchy` (`componentid`,`instanceid`,`hierarchyid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `geo_component_hierarchy` -- /*!40000 ALTER TABLE `geo_component_hierarchy` DISABLE KEYS */; LOCK TABLES `geo_component_hierarchy` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `geo_component_hierarchy` ENABLE KEYS */; -- -- Table structure for table `geoiteminfo` -- DROP TABLE IF EXISTS `geoiteminfo`; CREATE TABLE `geoiteminfo` ( `itemid` int(11) NOT NULL default '0', `mapreqmachineid` smallint(6) NOT NULL default '0', `georeferencedate` date NOT NULL default '0000-00-00', UNIQUE KEY `unique_itemid` (`itemid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `geoiteminfo` -- /*!40000 ALTER TABLE `geoiteminfo` DISABLE KEYS */; LOCK TABLES `geoiteminfo` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `geoiteminfo` ENABLE KEYS */; -- -- Table structure for table `hierarchicalcodeset` -- DROP TABLE IF EXISTS `hierarchicalcodeset`; CREATE TABLE `hierarchicalcodeset` ( `hcodesetid` smallint(6) NOT NULL default '0', `description` varchar(255) NOT NULL default '' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `hierarchicalcodeset` -- /*!40000 ALTER TABLE `hierarchicalcodeset` DISABLE KEYS */; LOCK TABLES `hierarchicalcodeset` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `hierarchicalcodeset` ENABLE KEYS */; -- -- Table structure for table `hierarchyvalue` -- DROP TABLE IF EXISTS `hierarchyvalue`; CREATE TABLE `hierarchyvalue` ( `hcodesetid` smallint(6) NOT NULL default '0', `hvalueid` smallint(6) NOT NULL default '0', `parenthcodesetid` smallint(6) NOT NULL default '0', `parenthvalueid` smallint(6) NOT NULL default '0', `level` tinyint(4) NOT NULL default '0', `value` varchar(12) default NULL, `description` varchar(255) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `hierarchyvalue` -- /*!40000 ALTER TABLE `hierarchyvalue` DISABLE KEYS */; LOCK TABLES `hierarchyvalue` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `hierarchyvalue` ENABLE KEYS */; -- -- Table structure for table `instance` -- DROP TABLE IF EXISTS `instance`; CREATE TABLE `instance` ( `instanceid` int(11) NOT NULL default '0', `description` varchar(100) default NULL, `code_ts` varchar(8) default NULL, PRIMARY KEY (`instanceid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `instance` -- /*!40000 ALTER TABLE `instance` DISABLE KEYS */; LOCK TABLES `instance` WRITE; INSERT INTO `instance` VALUES (199401,'Jan 1994','1994M01'),(199402,'Feb 1994','1994M02'),(199403,'Mar 1994','1994M03'),(199404,'Apr 1994','1994M04'),(199405,'May 1994','1994M05'),(199406,'Jun 1994','1994M06'),(199407,'Jul 1994','1994M07'),(199408,'Aug 1994','1994M08'),(199409,'Sep 1994','1994M09'),(199410,'Oct 1994','1994M10'),(199411,'Nov 1994','1994M11'),(199412,'Dec 1994','1994M12'),(199501,'Jan 1995','1995M01'),(199502,'Feb 1995','1995M02'),(199503,'Mar 1995','1995M03'),(199504,'Apr 1995','1995M04'),(199505,'May 1995','1995M05'),(199506,'Jun 1995','1995M06'),(199507,'Jul 1995','1995M07'),(199508,'Aug 1995','1995M08'),(199509,'Sep 1995','1995M09'),(199510,'Oct 1995','1995M10'),(199511,'Nov 1995','1995M11'),(199512,'Dec 1995','1995M12'),(199601,'Jan 1996','1996M01'),(199602,'Feb 1996','1996M02'),(199603,'Mar 1996','1996M03'),(199604,'Apr 1996','1996M04'),(199605,'May 1996','1996M05'),(199606,'Jun 1996','1996M06'),(199607,'Jul 1996','1996M07'),(199608,'Aug 1996','1996M08'),(199609,'Sep 1996','1996M09'),(199610,'Oct 1996','1996M10'),(199611,'Nov 1996','1996M11'),(199612,'Dec 1996','1996M12'),(199701,'Jan 1997','1997M01'),(199702,'Feb 1997','1997M02'),(199703,'Mar 1997','1997M03'),(199704,'Apr 1997','1997M04'),(199705,'May 1997','1997M05'),(199706,'Jun 1997','1997M06'),(199707,'Jul 1997','1997M07'),(199708,'Aug 1997','1997M08'),(199709,'Sep 1997','1997M09'),(199710,'Oct 1997','1997M10'),(199711,'Nov 1997','1997M11'),(199712,'Dec 1997','1997M12'),(199801,'Jan 1998','1998M01'),(199802,'Feb 1998','1998M02'),(199803,'Mar 1998','1998M03'),(199804,'Apr 1998','1998M04'),(199805,'May 1998','1998M05'),(199806,'Jun 1998','1998M06'),(199807,'Jul 1998','1998M07'),(199808,'Aug 1998','1998M08'),(199809,'Sep 1998','1998M09'),(199810,'Oct 1998','1998M10'),(199811,'Nov 1998','1998M11'),(199812,'Dec 1998','1998M12'),(199901,'Jan 1999','1999M01'),(199902,'Feb 1999','1999M02'),(199903,'Mar 1999','1999M03'),(199904,'Apr 1999','1999M04'),(199905,'May 1999','1999M05'),(199906,'Jun 1999','1999M06'),(199907,'Jul 1999','1999M07'),(199908,'Aug 1999','1999M08'),(199909,'Sep 1999','1999M09'),(199910,'Oct 1999','1999M10'),(199911,'Nov 1999','1999M11'),(198901,'Jan 1989','1989M01'),(198902,'Feb 1989','1989M02'),(198903,'Mar 1989','1989M03'),(198904,'Apr 1989','1989M04'),(198905,'May 1989','1989M05'),(198906,'Jun 1989','1989M06'),(198907,'Jul 1989','1989M07'),(198908,'Aug 1989','1989M08'),(198909,'Sep 1989','1989M09'),(198910,'Oct 1989','1989M10'),(198911,'Nov 1989','1989M11'),(198912,'Dec 1989','1989M12'),(199001,'Jan 1990','1990M01'),(199002,'Feb 1990','1990M02'),(199003,'Mar 1990','1990M03'),(199004,'Apr 1990','1990M04'),(199005,'May 1990','1990M05'),(199006,'Jun 1990','1990M06'),(199007,'Jul 1990','1990M07'),(199008,'Aug 1990','1990M08'),(199009,'Sep 1990','1990M09'),(199011,'Nov 1990','1990M11'),(199012,'Dec 1990','1990M12'),(199101,'Jan 1991','1991M01'),(199102,'Feb 1991','1991M02'),(199103,'Mar 1991','1991M03'),(199104,'Apr 1991','1991M04'),(199105,'May 1991','1991M05'),(199106,'Jun 1991','1991M06'),(199107,'Jul 1991','1991M07'),(199108,'Aug 1991','1991M08'),(199109,'Sep 1991','1991M09'),(199110,'Oct 1991','1991M10'),(199111,'Nov 1991','1991M11'),(199112,'Dec 1991','1991M12'),(199201,'Jan 1992','1992M01'),(199202,'Feb 1992','1992M02'),(199203,'Mar 1992','1992M03'),(199204,'Apr 1992','1992M04'),(199205,'May 1992','1992M05'),(199206,'Jun 1992','1992M06'),(199207,'Jul 1992','1992M07'),(199208,'Aug 1992','1992M08'),(199209,'Sep 1992','1992M09'),(199210,'Oct 1992','1992M10'),(199211,'Nov 1992','1992M11'),(199212,'Dec 1992','1992M12'),(199301,'Jan 1993','1993M01'),(199302,'Feb 1993','1993M02'),(199303,'Mar 1993','1993M03'),(199304,'Apr 1993','1993M04'),(199305,'May 1993','1993M05'),(199306,'Jun 1993','1993M06'),(199307,'Jul 1993','1993M07'),(199308,'Aug 1993','1993M08'),(199309,'Sep 1993','1993M09'),(199310,'Oct 1993','1993M10'),(199311,'Nov 1993','1993M11'),(199312,'Dec 1993','1993M12'),(5001,'Wave 1',NULL),(5002,'Wave 2',NULL),(5003,'Wave 3',NULL),(5004,'Wave 4',NULL),(5005,'Wave 5',NULL),(5006,'Wave 6',NULL),(5007,'Wave 7',NULL),(5008,'Wave 8',NULL),(5009,'Wave 9',NULL),(5010,'Wave 10',NULL),(5020,'Longitudinal',NULL),(1990,'1990',NULL),(1992,'1992',NULL),(1993,'1993',NULL),(1994,'1994',NULL),(1995,'1995',NULL),(1996,'1996',NULL),(1997,'1997',NULL),(1998,'1998',NULL),(199912,'Dec 1999','1999M12'),(200001,'Jan 2000','2000M01'),(5501,'1997-Brevard County,FL',NULL),(5502,'1997- Douglas County,NE',NULL),(5503,'1997- Rockland County,NY',NULL),(5504,'1997- Franklin County,OH',NULL),(5505,'1997- Multnomah County,OR',NULL),(5506,'1997- Ft Bend/Harris County,TX',NULL),(1999,'1999',NULL),(200002,'Feb 2000','2000M02'),(1989,'1989',NULL),(5507,'Feb 1998-Internal',NULL),(5508,'Feb 2000-Internal',NULL),(5509,'1995-1998',NULL),(5510,'1990-1998',NULL),(200003,'Mar 2000','2000M03'),(5511,'1970-1996',NULL),(200004,'Apr 2000','2000M04'),(5512,'1998-Broward County,FL',NULL),(5513,'1998-Douglas County,NE',NULL),(5514,'1998-Rockland County,NY',NULL),(5515,'1998-Franklin County,OH',NULL),(5516,'1998-Multnomah County,OR',NULL),(5517,'1998-Richland/Kershaw County,SC',NULL),(5518,'1998-Ft Bend/Harris County,TX',NULL),(200005,'May 2000','2000M05'),(1991,'1991',NULL),(2000,'2000',NULL),(200006,'Jun 2000','2000M06'),(200007,'Jul 2000','2000M07'),(200008,'Aug 2000','2000M08'),(200009,'Sep 2000','2000M09'),(200010,'Oct 2000','2000M10'),(200011,'Nov 2000','2000M11'),(200012,'Dec 2000','2000M12'),(200101,'Jan 2001','2001M01'),(200102,'Feb 2001','2001M02'),(200103,'Mar 2001','2001M03'),(200104,'Apr 2001','2001M04'),(200105,'May 2001','2001M05'),(200106,'Jun 2001','2001M06'),(200107,'Jul 2001','2001M07'),(200108,'Aug 2001','2001M08'),(200109,'Sep 2001','2001M09'),(200110,'Oct 2001','2001M10'),(200111,'Nov 2001','2001M11'),(200112,'Dec 2001','2001M12'),(200201,'Jan 2002','2002M01'),(200202,'Feb 2002','2002M02'),(200203,'Mar 2002','2002M03'),(200204,'Apr 2002','2002M04'),(200205,'May 2002','2002M05'),(200206,'Jun 2002','2002M06'),(200207,'Jul 2002','2002M07'),(200208,'Aug 2002','2002M08'),(200209,'Sep 2002','2002M09'),(200210,'Oct 2002','2002M10'),(200211,'Nov 2002','2002M11'),(200212,'Dec 2002','2002M12'),(200301,'Jan 2003','2003M01'),(200302,'Feb 2003','2003M02'),(200303,'Mar 2003','2003M03'),(200304,'Apr 2003','2003M04'),(200305,'May 2003','2003M05'),(200306,'Jun 2003','2003M06'),(200307,'Jul 2003','2003M07'),(200308,'Aug 2003','2003M08'),(200309,'Sep 2003','2003M09'),(200310,'Oct 2003','2003M10'),(200311,'Nov 2003','2003M11'),(200312,'Dec 2003','2003M12'),(200401,'Jan 2004','2004M01'),(200402,'Feb 2004','2004M02'),(200403,'Mar 2004','2004M03'),(200404,'Apr 2004','2004M04'),(200405,'May 2004','2004M05'),(200406,'Jun 2004','2004M06'),(200407,'Jul 2004','2004M07'),(200408,'Aug 2004','2004M08'),(200409,'Sep 2004','2004M09'),(200410,'Oct 2004','2004M10'),(200411,'Nov 2004','2004M11'),(200412,'Dec 2004','2004M12'),(200501,'Jan 2005',NULL),(200502,'Feb 2005',NULL),(200503,'Mar 2005',NULL),(200504,'Apr 2005',NULL),(200505,'May 2005',NULL),(200506,'Jun 2005',NULL),(200507,'Jul 2005',NULL),(200508,'Aug 2005',NULL),(200509,'Sep 2005',NULL),(200510,'Oct 2005',NULL),(200511,'Nov 2005',NULL),(200512,'Dec 2005',NULL),(5011,'Wave 11',NULL),(5012,'Wave 12',NULL),(5519,'1990-2000',NULL),(5520,'Third File',NULL),(5521,'2001+',NULL),(5527,'First Quarter',NULL),(9999,'2000 Data has been removed for time being',NULL),(5524,'1990-1999',NULL),(5525,'Test Years',NULL),(199010,'Oct 1990','1990M10'),(2001,'2001',NULL),(2002,'2002',NULL),(2003,'2003',NULL),(2004,'2004',NULL),(2005,'2005',NULL),(2006,'2006',NULL),(2007,'2007',NULL),(2008,'2008',NULL),(2009,'2009',NULL),(2010,'2010',NULL),(5526,'1995-1998',NULL),(1980,'1980',NULL),(1981,'1981',NULL),(1982,'1982',NULL),(1983,'1983',NULL),(1984,'1984',NULL),(1985,'1985',NULL),(1986,'1986',NULL),(1987,'1987',NULL),(1988,'1988',NULL),(5528,'Second Quarter',NULL),(5529,'Third Quarter',NULL),(5530,'Fourth Quarter',NULL),(5531,'Jan 1992-May 2003',NULL),(5532,'1972-2002',NULL),(198713,'Annual Average (Across months) 1987','1987M13'),(198613,'Annual Average (Across months) 1986','1986M13'),(198513,'Annual Average (Across months) 1985','1985M13'),(198413,'Annual Average (Across months) 1984','1984M13'),(198313,'Annual Average (Across months) 1983','1983M13'),(198213,'Annual Average (Across months) 1982','1982M13'),(198113,'Annual Average (Across months) 1981','1981M13'),(198013,'Annual Average (Across months) 1980','1980M13'),(197913,'Annual Average (Across months) 1979','1979M13'),(197813,'Annual Average (Across months) 1978','1978M13'),(197713,'Annual Average (Across months) 1977','1977M13'),(197613,'Annual Average (Across months) 1976','1976M13'),(197513,'Annual Average (Across months) 1975','1975M13'),(197413,'Annual Average (Across months) 1974','1974M13'),(197313,'Annual Average (Across months) 1973','1973M13'),(197213,'Annual Average (Across months) 1972','1972M13'),(197113,'Annual Average (Across months) 1971','1971M13'),(197013,'Annual Average (Across months) 1970','1970M13'),(197001,'Jan 1970','1970M01'),(197002,'Feb 1970','1970M02'),(197003,'Mar 1970','1970M03'),(197004,'Apr 1970','1970M04'),(197005,'May 1970','1970M05'),(197006,'Jun 1970','1970M06'),(197007,'Jul 1970','1970M07'),(197008,'Aug 1970','1970M08'),(197009,'Sep 1970','1970M09'),(197010,'Oct 1970','1970M10'),(197011,'Nov 1970','1970M11'),(197012,'Dec 1970','1970M12'),(197101,'Jan 1971','1971M01'),(197102,'Feb 1971','1971M02'),(197103,'Mar 1971','1971M03'),(197104,'Apr 1971','1971M04'),(197105,'May 1971','1971M05'),(197106,'Jun 1971','1971M06'),(197107,'Jul 1971','1971M07'),(197108,'Aug 1971','1971M08'),(197109,'Sep 1971','1971M09'),(197110,'Oct 1971','1971M10'),(197111,'Nov 1971','1971M11'),(197112,'Dec 1971','1971M12'),(197201,'Jan 1972','1972M01'),(197202,'Feb 1972','1972M02'),(197203,'Mar 1972','1972M03'),(197204,'Apr 1972','1972M04'),(197205,'May 1972','1972M05'),(197206,'Jun 1972','1972M06'),(197207,'Jul 1972','1972M07'),(197208,'Aug 1972','1972M08'),(197209,'Sep 1972','1972M09'),(197210,'Oct 1972','1972M10'),(197211,'Nov 1972','1972M11'),(197212,'Dec 1972','1972M12'),(197301,'Jan 1973','1973M01'),(197302,'Feb 1973','1973M02'),(197303,'Mar 1973','1973M03'),(197304,'Apr 1973','1973M04'),(197305,'May 1973','1973M05'),(197306,'Jun 1973','1973M06'),(197307,'Jul 1973','1973M07'),(197308,'Aug 1973','1973M08'),(197309,'Sep 1973','1973M09'),(197310,'Oct 1973','1973M10'),(197311,'Nov 1973','1973M11'),(197312,'Dec 1973','1973M12'),(197401,'Jan 1974','1974M01'),(197402,'Feb 1974','1974M02'),(197403,'Mar 1974','1974M03'),(197404,'Apr 1974','1974M04'),(197405,'May 1974','1974M05'),(197406,'Jun 1974','1974M06'),(197407,'Jul 1974','1974M07'),(197408,'Aug 1974','1974M08'),(197409,'Sep 1974','1974M09'),(197410,'Oct 1974','1974M10'),(197411,'Nov 1974','1974M11'),(197412,'Dec 1974','1974M12'),(197501,'Jan 1975','1975M01'),(197502,'Feb 1975','1975M02'),(197503,'Mar 1975','1975M03'),(197504,'Apr 1975','1975M04'),(197505,'May 1975','1975M05'),(197506,'Jun 1975','1975M06'),(197507,'Jul 1975','1975M07'),(197508,'Aug 1975','1975M08'),(197509,'Sep 1975','1975M09'),(197510,'Oct 1975','1975M10'),(197511,'Nov 1975','1975M11'),(197512,'Dec 1975','1975M12'),(197601,'Jan 1976','1976M01'),(197602,'Feb 1976','1976M02'),(197603,'Mar 1976','1976M03'),(197604,'Apr 1976','1976M04'),(197605,'May 1976','1976M05'),(197606,'Jun 1976','1976M06'),(197607,'Jul 1976','1976M07'),(197608,'Aug 1976','1976M08'),(197609,'Sep 1976','1976M09'),(197610,'Oct 1976','1976M10'),(197611,'Nov 1976','1976M11'),(197612,'Dec 1976','1976M12'),(197701,'Jan 1977','1977M01'),(197702,'Feb 1977','1977M02'),(197703,'Mar 1977','1977M03'),(197704,'Apr 1977','1977M04'),(197705,'May 1977','1977M05'),(197706,'Jun 1977','1977M06'),(197707,'Jul 1977','1977M07'),(197708,'Aug 1977','1977M08'),(197709,'Sep 1977','1977M09'),(197710,'Oct 1977','1977M10'),(197711,'Nov 1977','1977M11'),(197712,'Dec 1977','1977M12'),(197801,'Jan 1978','1978M01'),(197802,'Feb 1978','1978M02'),(197803,'Mar 1978','1978M03'),(197804,'Apr 1978','1978M04'),(197805,'May 1978','1978M05'),(197806,'Jun 1978','1978M06'),(197807,'Jul 1978','1978M07'),(197808,'Aug 1978','1978M08'),(197809,'Sep 1978','1978M09'),(197810,'Oct 1978','1978M10'),(197811,'Nov 1978','1978M11'),(197812,'Dec 1978','1978M12'),(197901,'Jan 1979','1979M01'),(197902,'Feb 1979','1979M02'),(197903,'Mar 1979','1979M03'),(197904,'Apr 1979','1979M04'),(197905,'May 1979','1979M05'),(197906,'Jun 1979','1979M06'),(197907,'Jul 1979','1979M07'),(197908,'Aug 1979','1979M08'),(197909,'Sep 1979','1979M09'),(197910,'Oct 1979','1979M10'),(197911,'Nov 1979','1979M11'),(197912,'Dec 1979','1979M12'),(198001,'Jan 1980','1980M01'),(198002,'Feb 1980','1980M02'),(198003,'Mar 1980','1980M03'),(198004,'Apr 1980','1980M04'),(198005,'May 1980','1980M05'),(198006,'Jun 1980','1980M06'),(198007,'Jul 1980','1980M07'),(198008,'Aug 1980','1980M08'),(198009,'Sep 1980','1980M09'),(198010,'Oct 1980','1980M10'),(198011,'Nov 1980','1980M11'),(198012,'Dec 1980','1980M12'),(198101,'Jan 1981','1981M01'),(198102,'Feb 1981','1981M02'),(198103,'Mar 1981','1981M03'),(198104,'Apr 1981','1981M04'),(198105,'May 1981','1981M05'),(198106,'Jun 1981','1981M06'),(198107,'Jul 1981','1981M07'),(198108,'Aug 1981','1981M08'),(198109,'Sep 1981','1981M09'),(198110,'Oct 1981','1981M10'),(198111,'Nov 1981','1981M11'),(198112,'Dec 1981','1981M12'),(198201,'Jan 1982','1982M01'),(198202,'Feb 1982','1982M02'),(198203,'Mar 1982','1982M03'),(198204,'Apr 1982','1982M04'),(198205,'May 1982','1982M05'),(198206,'Jun 1982','1982M06'),(198207,'Jul 1982','1982M07'),(198208,'Aug 1982','1982M08'),(198209,'Sep 1982','1982M09'),(198210,'Oct 1982','1982M10'),(198211,'Nov 1982','1982M11'),(198212,'Dec 1982','1982M12'),(198301,'Jan 1983','1983M01'),(198302,'Feb 1983','1983M02'),(198303,'Mar 1983','1983M03'),(198304,'Apr 1983','1983M04'),(198305,'May 1983','1983M05'),(198306,'Jun 1983','1983M06'),(198307,'Jul 1983','1983M07'),(198308,'Aug 1983','1983M08'),(198309,'Sep 1983','1983M09'),(198310,'Oct 1983','1983M10'),(198311,'Nov 1983','1983M11'),(198312,'Dec 1983','1983M12'),(198401,'Jan 1984','1984M01'),(198402,'Feb 1984','1984M02'),(198403,'Mar 1984','1984M03'),(198404,'Apr 1984','1984M04'),(198405,'May 1984','1984M05'),(198406,'Jun 1984','1984M06'),(198407,'Jul 1984','1984M07'),(198408,'Aug 1984','1984M08'),(198409,'Sep 1984','1984M09'),(198410,'Oct 1984','1984M10'),(198411,'Nov 1984','1984M11'),(198412,'Dec 1984','1984M12'),(198501,'Jan 1985','1985M01'),(198502,'Feb 1985','1985M02'),(198503,'Mar 1985','1985M03'),(198504,'Apr 1985','1985M04'),(198505,'May 1985','1985M05'),(198506,'Jun 1985','1985M06'),(198507,'Jul 1985','1985M07'),(198508,'Aug 1985','1985M08'),(198509,'Sep 1985','1985M09'),(198510,'Oct 1985','1985M10'),(198511,'Nov 1985','1985M11'),(198512,'Dec 1985','1985M12'),(198601,'Jan 1986','1986M01'),(198602,'Feb 1986','1986M02'),(198603,'Mar 1986','1986M03'),(198604,'Apr 1986','1986M04'),(198605,'May 1986','1986M05'),(198606,'Jun 1986','1986M06'),(198607,'Jul 1986','1986M07'),(198608,'Aug 1986','1986M08'),(198609,'Sep 1986','1986M09'),(198610,'Oct 1986','1986M10'),(198611,'Nov 1986','1986M11'),(198612,'Dec 1986','1986M12'),(198701,'Jan 1987','1987M01'),(198702,'Feb 1987','1987M02'),(198703,'Mar 1987','1987M03'),(198704,'Apr 1987','1987M04'),(198705,'May 1987','1987M05'),(198706,'Jun 1987','1987M06'),(198707,'Jul 1987','1987M07'),(198708,'Aug 1987','1987M08'),(198709,'Sep 1987','1987M09'),(198710,'Oct 1987','1987M10'),(198711,'Nov 1987','1987M11'),(198712,'Dec 1987','1987M12'),(198801,'Jan 1988','1988M01'),(198802,'Feb 1988','1988M02'),(198803,'Mar 1988','1988M03'),(198804,'Apr 1988','1988M04'),(198805,'May 1988','1988M05'),(198806,'Jun 1988','1988M06'),(198807,'Jul 1988','1988M07'),(198808,'Aug 1988','1988M08'),(198809,'Sep 1988','1988M09'),(198810,'Oct 1988','1988M10'),(198811,'Nov 1988','1988M11'),(198812,'Dec 1988','1988M12'),(197021,'1st Quarter 1970','1970Q01'),(197022,'2nd Quarter 1970','1970Q02'),(197023,'3rd Quarter 1970','1970Q03'),(197024,'4th Quarter 1970','1970Q04'),(197121,'1st Quarter 1971','1971Q01'),(197122,'2nd Quarter 1971','1971Q02'),(197123,'3rd Quarter 1971','1971Q03'),(197124,'4th Quarter 1971','1971Q04'),(197221,'1st Quarter 1972','1972Q01'),(197222,'2nd Quarter 1972','1972Q02'),(197223,'3rd Quarter 1972','1972Q03'),(197224,'4th Quarter 1972','1972Q04'),(197321,'1st Quarter 1973','1973Q01'),(197322,'2nd Quarter 1973','1973Q02'),(197323,'3rd Quarter 1973','1973Q03'),(197324,'4th Quarter 1973','1973Q04'),(197421,'1st Quarter 1974','1974Q01'),(197422,'2nd Quarter 1974','1974Q02'),(197423,'3rd Quarter 1974','1974Q03'),(197424,'4th Quarter 1974','1974Q04'),(197521,'1st Quarter 1975','1975Q01'),(197522,'2nd Quarter 1975','1975Q02'),(197523,'3rd Quarter 1975','1975Q03'),(197524,'4th Quarter 1975','1975Q04'),(197621,'1st Quarter 1976','1976Q01'),(197622,'2nd Quarter 1976','1976Q02'),(197623,'3rd Quarter 1976','1976Q03'),(197624,'4th Quarter 1976','1976Q04'),(197721,'1st Quarter 1977','1977Q01'),(197722,'2nd Quarter 1977','1977Q02'),(197723,'3rd Quarter 1977','1977Q03'),(197724,'4th Quarter 1977','1977Q04'),(197821,'1st Quarter 1978','1978Q01'),(197822,'2nd Quarter 1978','1978Q02'),(197823,'3rd Quarter 1978','1978Q03'),(197824,'4th Quarter 1978','1978Q04'),(197921,'1st Quarter 1979','1979Q01'),(197922,'2nd Quarter 1979','1979Q02'),(197923,'3rd Quarter 1979','1979Q03'),(197924,'4th Quarter 1979','1979Q04'),(198021,'1st Quarter 1980','1980Q01'),(198022,'2nd Quarter 1980','1980Q02'),(198023,'3rd Quarter 1980','1980Q03'),(198024,'4th Quarter 1980','1980Q04'),(198121,'1st Quarter 1981','1981Q01'),(198122,'2nd Quarter 1981','1981Q02'),(198123,'3rd Quarter 1981','1981Q03'),(198124,'4th Quarter 1981','1981Q04'),(198221,'1st Quarter 1982','1982Q01'),(198222,'2nd Quarter 1982','1982Q02'),(198223,'3rd Quarter 1982','1982Q03'),(198224,'4th Quarter 1982','1982Q04'),(198321,'1st Quarter 1983','1983Q01'),(198322,'2nd Quarter 1983','1983Q02'),(198323,'3rd Quarter 1983','1983Q03'),(198324,'4th Quarter 1983','1983Q04'),(198421,'1st Quarter 1984','1984Q01'),(198422,'2nd Quarter 1984','1984Q02'),(198423,'3rd Quarter 1984','1984Q03'),(198424,'4th Quarter 1984','1984Q04'),(198521,'1st Quarter 1985','1985Q01'),(198522,'2nd Quarter 1985','1985Q02'),(198523,'3rd Quarter 1985','1985Q03'),(198524,'4th Quarter 1985','1985Q04'),(198621,'1st Quarter 1986','1986Q01'),(198622,'2nd Quarter 1986','1986Q02'),(198623,'3rd Quarter 1986','1986Q03'),(198624,'4th Quarter 1986','1986Q04'),(198721,'1st Quarter 1987','1987Q01'),(198722,'2nd Quarter 1987','1987Q02'),(198723,'3rd Quarter 1987','1987Q03'),(198724,'4th Quarter 1987','1987Q04'),(198821,'1st Quarter 1988','1988Q01'),(198822,'2nd Quarter 1988','1988Q02'),(198823,'3rd Quarter 1988','1988Q03'),(198824,'4th Quarter 1988','1988Q04'),(198921,'1st Quarter 1989','1989Q01'),(198922,'2nd Quarter 1989','1989Q02'),(198923,'3rd Quarter 1989','1989Q03'),(198924,'4th Quarter 1989','1989Q04'),(199021,'1st Quarter 1990','1990Q01'),(199022,'2nd Quarter 1990','1990Q02'),(199023,'3rd Quarter 1990','1990Q03'),(199024,'4th Quarter 1990','1990Q04'),(199121,'1st Quarter 1991','1991Q01'),(199122,'2nd Quarter 1991','1991Q02'),(199123,'3rd Quarter 1991','1991Q03'),(199124,'4th Quarter 1991','1991Q04'),(199221,'1st Quarter 1992','1992Q01'),(199222,'2nd Quarter 1992','1992Q02'),(199223,'3rd Quarter 1992','1992Q03'),(199224,'4th Quarter 1992','1992Q04'),(199321,'1st Quarter 1993','1993Q01'),(199322,'2nd Quarter 1993','1993Q02'),(199323,'3rd Quarter 1993','1993Q03'),(199324,'4th Quarter 1993','1993Q04'),(199421,'1st Quarter 1994','1994Q01'),(199422,'2nd Quarter 1994','1994Q02'),(199423,'3rd Quarter 1994','1994Q03'),(199424,'4th Quarter 1994','1994Q04'),(199521,'1st Quarter 1995','1995Q01'),(199522,'2nd Quarter 1995','1995Q02'),(199523,'3rd Quarter 1995','1995Q03'),(199524,'4th Quarter 1995','1995Q04'),(199621,'1st Quarter 1996','1996Q01'),(199622,'2nd Quarter 1996','1996Q02'),(199623,'3rd Quarter 1996','1996Q03'),(199624,'4th Quarter 1996','1996Q04'),(199721,'1st Quarter 1997','1997Q01'),(199722,'2nd Quarter 1997','1997Q02'),(199723,'3rd Quarter 1997','1997Q03'),(199724,'4th Quarter 1997','1997Q04'),(199821,'1st Quarter 1998','1998Q01'),(199822,'2nd Quarter 1998','1998Q02'),(199823,'3rd Quarter 1998','1998Q03'),(199824,'4th Quarter 1998','1998Q04'),(199921,'1st Quarter 1999','1999Q01'),(199922,'2nd Quarter 1999','1999Q02'),(199923,'3rd Quarter 1999','1999Q03'),(199924,'4th Quarter 1999','1999Q04'),(200021,'1st Quarter 2000','2000Q01'),(200022,'2nd Quarter 2000','2000Q02'),(200023,'3rd Quarter 2000','2000Q03'),(200024,'4th Quarter 2000','2000Q04'),(200121,'1st Quarter 2001','2001Q01'),(200122,'2nd Quarter 2001','2001Q02'),(200123,'3rd Quarter 2001','2001Q03'),(200124,'4th Quarter 2001','2001Q04'),(200221,'1st Quarter 2002','2002Q01'),(200222,'2nd Quarter 2002','2002Q02'),(200223,'3rd Quarter 2002','2002Q03'),(200224,'4th Quarter 2002','2002Q04'),(200321,'1st Quarter 2003','2003Q01'),(200322,'2nd Quarter 2003','2003Q02'),(200323,'3rd Quarter 2003','2003Q03'),(200324,'4th Quarter 2003','2003Q04'),(200421,'1st Quarter 2004','2004Q01'),(200422,'2nd Quarter 2004','2004Q02'),(200423,'3rd Quarter 2004','2004Q03'),(200424,'4th Quarter 2004','2004Q04'),(198813,'Annual Average (Across months) 1988','1988M13'),(198913,'Annual Average (Across months) 1989','1989M13'),(199013,'Annual Average (Across months) 1990','1990M13'),(199113,'Annual Average (Across months) 1991','1991M13'),(199213,'Annual Average (Across months) 1992','1992M13'),(199313,'Annual Average (Across months) 1993','1993M13'),(199413,'Annual Average (Across months) 1994','1994M13'),(199513,'Annual Average (Across months) 1995','1995M13'),(199613,'Annual Average (Across months) 1996','1996M13'),(199713,'Annual Average (Across months) 1997','1997M13'),(199813,'Annual Average (Across months) 1998','1998M13'),(199913,'Annual Average (Across months) 1999','1999M13'),(200013,'Annual Average (Across months) 2000','2000M13'),(200113,'Annual Average (Across months) 2001','2001M13'),(200213,'Annual Average (Across months) 2002','2002M13'),(200313,'Annual Average (Across months) 2003','2003M13'),(1880,'1880','NULL'),(1900,'1900','NULL'),(1910,'1910','NULL'),(1920,'1920','NULL'),(1940,'1940','NULL'),(1950,'1950','NULL'),(1960,'1960','NULL'),(196703,'Mar 1967','1967M03'),(196803,'Mar 1968','1968M03'),(196903,'Mar 1969','1969M03'),(200601,'Jan 2006',NULL),(200602,'Feb 2006',NULL),(200603,'Mar 2006',NULL),(200604,'Apr 2006',NULL),(200605,'May 2006',NULL),(200606,'Jun 2006',NULL),(200607,'Jul 2006',NULL),(200608,'Aug 2006',NULL),(200609,'Sep 2006',NULL),(200610,'Oct 2006',NULL),(200611,'Nov 2006',NULL),(200612,'Dec 2006',NULL),(111111,'Time Series','series'),(197031,'1st Quarter 1970','1970Q1'),(197032,'2nd Quarter 1970','1970Q2'),(197033,'3rd Quarter 1970','1970Q3'),(197034,'4th Quarter 1970','1970Q4'),(197131,'1st Quarter 1971','1971Q1'),(197132,'2nd Quarter 1971','1971Q2'),(197133,'3rd Quarter 1971','1971Q3'),(197134,'4th Quarter 1971','1971Q4'),(197231,'1st Quarter 1972','1972Q1'),(197232,'2nd Quarter 1972','1972Q2'),(197233,'3rd Quarter 1972','1972Q3'),(197234,'4th Quarter 1972','1972Q4'),(197331,'1st Quarter 1973','1973Q1'),(197332,'2nd Quarter 1973','1973Q2'),(197333,'3rd Quarter 1973','1973Q3'),(197334,'4th Quarter 1973','1973Q4'),(197431,'1st Quarter 1974','1974Q1'),(197432,'2nd Quarter 1974','1974Q2'),(197433,'3rd Quarter 1974','1974Q3'),(197434,'4th Quarter 1974','1974Q4'),(197531,'1st Quarter 1975','1975Q1'),(197532,'2nd Quarter 1975','1975Q2'),(197533,'3rd Quarter 1975','1975Q3'),(197534,'4th Quarter 1975','1975Q4'),(197631,'1st Quarter 1976','1976Q1'),(197632,'2nd Quarter 1976','1976Q2'),(197633,'3rd Quarter 1976','1976Q3'),(197634,'4th Quarter 1976','1976Q4'),(197731,'1st Quarter 1977','1977Q1'),(197732,'2nd Quarter 1977','1977Q2'),(197733,'3rd Quarter 1977','1977Q3'),(197734,'4th Quarter 1977','1977Q4'),(197831,'1st Quarter 1978','1978Q1'),(197832,'2nd Quarter 1978','1978Q2'),(197833,'3rd Quarter 1978','1978Q3'),(197834,'4th Quarter 1978','1978Q4'),(197931,'1st Quarter 1979','1979Q1'),(197932,'2nd Quarter 1979','1979Q2'),(197933,'3rd Quarter 1979','1979Q3'),(197934,'4th Quarter 1979','1979Q4'),(198031,'1st Quarter 1980','1980Q1'),(198032,'2nd Quarter 1980','1980Q2'),(198033,'3rd Quarter 1980','1980Q3'),(198034,'4th Quarter 1980','1980Q4'),(198131,'1st Quarter 1981','1981Q1'),(198132,'2nd Quarter 1981','1981Q2'),(198133,'3rd Quarter 1981','1981Q3'),(198134,'4th Quarter 1981','1981Q4'),(198231,'1st Quarter 1982','1982Q1'),(198232,'2nd Quarter 1982','1982Q2'),(198233,'3rd Quarter 1982','1982Q3'),(198234,'4th Quarter 1982','1982Q4'),(198331,'1st Quarter 1983','1983Q1'),(198332,'2nd Quarter 1983','1983Q2'),(198333,'3rd Quarter 1983','1983Q3'),(198334,'4th Quarter 1983','1983Q4'),(198431,'1st Quarter 1984','1984Q1'),(198432,'2nd Quarter 1984','1984Q2'),(198433,'3rd Quarter 1984','1984Q3'),(198434,'4th Quarter 1984','1984Q4'),(198531,'1st Quarter 1985','1985Q1'),(198532,'2nd Quarter 1985','1985Q2'),(198533,'3rd Quarter 1985','1985Q3'),(198534,'4th Quarter 1985','1985Q4'),(198631,'1st Quarter 1986','1986Q1'),(198632,'2nd Quarter 1986','1986Q2'),(198633,'3rd Quarter 1986','1986Q3'),(198634,'4th Quarter 1986','1986Q4'),(198731,'1st Quarter 1987','1987Q1'),(198732,'2nd Quarter 1987','1987Q2'),(198733,'3rd Quarter 1987','1987Q3'),(198734,'4th Quarter 1987','1987Q4'),(198831,'1st Quarter 1988','1988Q1'),(198832,'2nd Quarter 1988','1988Q2'),(198833,'3rd Quarter 1988','1988Q3'),(198834,'4th Quarter 1988','1988Q4'),(198931,'1st Quarter 1989','1989Q1'),(198932,'2nd Quarter 1989','1989Q2'),(198933,'3rd Quarter 1989','1989Q3'),(198934,'4th Quarter 1989','1989Q4'),(199031,'1st Quarter 1990','1990Q1'),(199032,'2nd Quarter 1990','1990Q2'),(199033,'3rd Quarter 1990','1990Q3'),(199034,'4th Quarter 1990','1990Q4'),(199131,'1st Quarter 1991','1991Q1'),(199132,'2nd Quarter 1991','1991Q2'),(199133,'3rd Quarter 1991','1991Q3'),(199134,'4th Quarter 1991','1991Q4'),(199231,'1st Quarter 1992','1992Q1'),(199232,'2nd Quarter 1992','1992Q2'),(199233,'3rd Quarter 1992','1992Q3'),(199234,'4th Quarter 1992','1992Q4'),(199331,'1st Quarter 1993','1993Q1'),(199332,'2nd Quarter 1993','1993Q2'),(199333,'3rd Quarter 1993','1993Q3'),(199334,'4th Quarter 1993','1993Q4'),(199431,'1st Quarter 1994','1994Q1'),(199432,'2nd Quarter 1994','1994Q2'),(199433,'3rd Quarter 1994','1994Q3'),(199434,'4th Quarter 1994','1994Q4'),(199531,'1st Quarter 1995','1995Q1'),(199532,'2nd Quarter 1995','1995Q2'),(199533,'3rd Quarter 1995','1995Q3'),(199534,'4th Quarter 1995','1995Q4'),(199631,'1st Quarter 1996','1996Q1'),(199632,'2nd Quarter 1996','1996Q2'),(199633,'3rd Quarter 1996','1996Q3'),(199634,'4th Quarter 1996','1996Q4'),(199731,'1st Quarter 1997','1997Q1'),(199732,'2nd Quarter 1997','1997Q2'),(199733,'3rd Quarter 1997','1997Q3'),(199734,'4th Quarter 1997','1997Q4'),(199831,'1st Quarter 1998','1998Q1'),(199832,'2nd Quarter 1998','1998Q2'),(199833,'3rd Quarter 1998','1998Q3'),(199834,'4th Quarter 1998','1998Q4'),(199931,'1st Quarter 1999','1999Q1'),(199932,'2nd Quarter 1999','1999Q2'),(199933,'3rd Quarter 1999','1999Q3'),(199934,'4th Quarter 1999','1999Q4'),(200031,'1st Quarter 2000','2000Q1'),(200032,'2nd Quarter 2000','2000Q2'),(200033,'3rd Quarter 2000','2000Q3'),(200034,'4th Quarter 2000','2000Q4'),(200131,'1st Quarter 2001','2001Q1'),(200132,'2nd Quarter 2001','2001Q2'),(200133,'3rd Quarter 2001','2001Q3'),(200134,'4th Quarter 2001','2001Q4'),(200231,'1st Quarter 2002','2002Q1'),(200232,'2nd Quarter 2002','2002Q2'),(200233,'3rd Quarter 2002','2002Q3'),(200234,'4th Quarter 2002','2002Q4'),(200331,'1st Quarter 2003','2003Q1'),(200332,'2nd Quarter 2003','2003Q2'),(200333,'3rd Quarter 2003','2003Q3'),(200334,'4th Quarter 2003','2003Q4'),(200431,'1st Quarter 2004','2004Q1'),(200432,'2nd Quarter 2004','2004Q2'),(200433,'3rd Quarter 2004','2004Q3'),(200434,'4th Quarter 2004','2004Q4'),(200531,'1st Quarter 2005','2005Q1'),(200532,'2nd Quarter 2005','2005Q2'),(200533,'3rd Quarter 2005','2005Q3'),(200534,'4th Quarter 2005','2005Q4'),(200631,'1st Quarter 2006','2006Q1'),(200632,'2nd Quarter 2006','2006Q2'),(200633,'3rd Quarter 2006','2006Q3'),(200634,'4th Quarter 2006','2006Q4'),(1970,'1970',NULL),(1930,'1930',NULL),(1890,'1890',NULL),(1978,'1978',NULL),(1979,'1979',NULL); UNLOCK TABLES; /*!40000 ALTER TABLE `instance` ENABLE KEYS */; -- -- Table structure for table `itemhierarchymap` -- DROP TABLE IF EXISTS `itemhierarchymap`; CREATE TABLE `itemhierarchymap` ( `itemid` int(11) NOT NULL default '0', `hcodesetid` smallint(6) NOT NULL default '0', `subselectionid` smallint(6) NOT NULL default '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `itemhierarchymap` -- /*!40000 ALTER TABLE `itemhierarchymap` DISABLE KEYS */; LOCK TABLES `itemhierarchymap` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `itemhierarchymap` ENABLE KEYS */; -- -- Table structure for table `itemtype` -- DROP TABLE IF EXISTS `itemtype`; CREATE TABLE `itemtype` ( `itemtypeid` tinyint(4) default NULL, `BOGUS_SURVEYCATID` smallint(6) default NULL, `itemtypeval` char(1) default NULL, `description` char(20) default NULL, `defaultstate` tinyint(4) default NULL, `homepageid` int(11) default NULL, `BOGUS_SECURITYLEVEL` tinyint(4) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `itemtype` -- /*!40000 ALTER TABLE `itemtype` DISABLE KEYS */; LOCK TABLES `itemtype` WRITE; INSERT INTO `itemtype` VALUES (1,0,'E','Edited',1,14,4),(2,0,'U','Unedited',0,15,4),(3,0,'R','Recodes',1,16,4),(4,0,'X','Flags',0,17,4),(5,0,'W','Weights',1,18,4),(6,0,'T','Topcodes',1,73,4),(7,0,'S','Sample Control',1,0,4),(8,0,'G','Geography',1,0,4),(9,0,'P','Replicate Weights',0,0,4),(10,0,'N','Public Use',1,72,4),(11,0,'A','Aggregate Flag',0,0,4),(12,0,'H','Geographical Point',1,0,4),(13,0,'Q','Point Dimension',0,0,4),(14,0,'M','Metadata Recode',1,0,4),(15,0,'D','Dynamic Multi-var',1,0,4),(16,0,'C','Compound Variable',1,0,4),(17,0,'L','Element Variable',0,0,4); UNLOCK TABLES; /*!40000 ALTER TABLE `itemtype` ENABLE KEYS */; -- -- Table structure for table `iteration` -- DROP TABLE IF EXISTS `iteration`; CREATE TABLE `iteration` ( `iter_group_id` tinyint(4) default NULL, `num_iterations` smallint(6) default NULL, `keyname` char(13) default NULL, `surveycatid` int(11) default NULL, `iter_control` char(12) default NULL, UNIQUE KEY `iter_group_id_index` (`iter_group_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `iteration` -- /*!40000 ALTER TABLE `iteration` DISABLE KEYS */; LOCK TABLES `iteration` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `iteration` ENABLE KEYS */; -- -- Table structure for table `keymap` -- DROP TABLE IF EXISTS `keymap`; CREATE TABLE `keymap` ( `itemid` int(11) default NULL, `keywordid` int(11) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `keymap` -- /*!40000 ALTER TABLE `keymap` DISABLE KEYS */; LOCK TABLES `keymap` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `keymap` ENABLE KEYS */; -- -- Table structure for table `keyword` -- DROP TABLE IF EXISTS `keyword`; CREATE TABLE `keyword` ( `keyword` char(80) NOT NULL default '', `keywordid` int(11) default NULL, KEY `keywd` (`keyword`(10)) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `keyword` -- /*!40000 ALTER TABLE `keyword` DISABLE KEYS */; LOCK TABLES `keyword` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `keyword` ENABLE KEYS */; -- -- Table structure for table `labelmap` -- DROP TABLE IF EXISTS `labelmap`; CREATE TABLE `labelmap` ( `keywordid` int(11) NOT NULL default '0', `itemid` int(11) NOT NULL default '0', KEY `label` (`keywordid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `labelmap` -- /*!40000 ALTER TABLE `labelmap` DISABLE KEYS */; LOCK TABLES `labelmap` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `labelmap` ENABLE KEYS */; -- -- Table structure for table `legal_component_matches2` -- DROP TABLE IF EXISTS `legal_component_matches2`; CREATE TABLE `legal_component_matches2` ( `componentid` smallint(6) default NULL, `inherited_componentid` smallint(6) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `legal_component_matches2` -- /*!40000 ALTER TABLE `legal_component_matches2` DISABLE KEYS */; LOCK TABLES `legal_component_matches2` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `legal_component_matches2` ENABLE KEYS */; -- -- Table structure for table `machine` -- DROP TABLE IF EXISTS `machine`; CREATE TABLE `machine` ( `machineid` smallint(6) NOT NULL default '0', `hostname` varchar(40) default NULL, `port` int(11) default NULL, `description` varchar(25) default NULL, PRIMARY KEY (`machineid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `machine` -- /*!40000 ALTER TABLE `machine` DISABLE KEYS */; LOCK TABLES `machine` WRITE; INSERT INTO `machine` VALUES (1,'127.0.0.1',4505,'Auto Generated'),(2,'www.thedataweb.org:80',80,'Auto Generated'),(3,'www.jointcenter.org',80,'Auto Generated'); UNLOCK TABLES; /*!40000 ALTER TABLE `machine` ENABLE KEYS */; -- -- Table structure for table `median_info` -- DROP TABLE IF EXISTS `median_info`; CREATE TABLE `median_info` ( `itemid` int(11) NOT NULL default '0', `medianid` int(11) NOT NULL default '0', `threshold` int(11) NOT NULL default '0', UNIQUE KEY `median_info_index` (`itemid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `median_info` -- /*!40000 ALTER TABLE `median_info` DISABLE KEYS */; LOCK TABLES `median_info` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `median_info` ENABLE KEYS */; -- -- Table structure for table `meta_info` -- DROP TABLE IF EXISTS `meta_info`; CREATE TABLE `meta_info` ( `metaid` int(11) default NULL, `description` varchar(255) default NULL, `urlid` int(11) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `meta_info` -- /*!40000 ALTER TABLE `meta_info` DISABLE KEYS */; LOCK TABLES `meta_info` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `meta_info` ENABLE KEYS */; -- -- Table structure for table `meta_info_map` -- DROP TABLE IF EXISTS `meta_info_map`; CREATE TABLE `meta_info_map` ( `itemid` int(11) default NULL, `metaid` int(11) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `meta_info_map` -- /*!40000 ALTER TABLE `meta_info_map` DISABLE KEYS */; LOCK TABLES `meta_info_map` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `meta_info_map` ENABLE KEYS */; -- -- Table structure for table `micro_item` -- DROP TABLE IF EXISTS `micro_item`; CREATE TABLE `micro_item` ( `itemid` int(11) NOT NULL default '0', `mnemonic` varchar(25) default NULL, `componentid` smallint(6) NOT NULL default '0', `conceptid` int(11) NOT NULL default '0', `shortdescription` varchar(255) default NULL, `securitylevel` tinyint(4) default NULL, `datatype` tinyint(4) default NULL, `itemtypeid` int(11) default NULL, `periodid` smallint(6) default NULL, `sugwgtid` int(11) default NULL, `wgtdvar` int(11) default NULL, `iter_group_id` int(11) default NULL, `unit_typeid` tinyint(4) default NULL, `security_2` tinyint(4) default NULL, `codesetid` int(11) default NULL, `recoded_itemid` int(11) NOT NULL default '0', `comparisonid` smallint(6) NOT NULL default '0', `formula_ind` tinyint(4) NOT NULL default '0', `pmedian_ind` tinyint(4) NOT NULL default '0', `geography_ind` tinyint(4) NOT NULL default '0', `hierarchyMaxLevel` tinyint(4) default NULL, `summable_ind` tinyint(4) default NULL, `subselection_ind` tinyint(4) default NULL, PRIMARY KEY (`itemid`), KEY `conceptid_index` (`conceptid`), KEY `componentid_index` (`componentid`), KEY `mnemonic_index` (`mnemonic`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `micro_item` -- /*!40000 ALTER TABLE `micro_item` DISABLE KEYS */; LOCK TABLES `micro_item` WRITE; INSERT INTO `micro_item` VALUES (1,'fipstate',1,2,'FIPS State Code',4,1,10,2,0,2,0,1,0,0,0,0,0,0,0,0,0,0),(2,'naics',1,3,'NAICS Code',4,51,10,2,0,2,0,1,0,0,0,0,0,0,0,0,0,0),(3,'empflag',1,3,'Data Suppression Flag',4,38,10,2,0,2,0,1,0,0,0,0,0,0,0,0,0,0),(4,'emp',1,3,'Total Number of Mid-March Employees',4,1,10,2,0,2,0,1,0,0,0,0,0,0,0,0,0,0),(5,'ap',1,3,'Total Annual Payroll ($1,000)',4,1,10,2,0,2,0,1,0,0,0,0,0,0,0,0,0,0),(6,'est',1,3,'Total Number of Establishments',4,1,10,2,0,2,0,1,0,0,0,0,0,0,0,0,0,0),(7,'n1_4',1,3,'Num. of Estabs by Empl. Size Class: 1-4 Employees',4,1,10,2,0,2,0,1,0,0,0,0,0,0,0,0,0,0),(8,'n5_9',1,3,'Num. of Estabs by Empl. Size Class: 5-9 Employees',4,1,10,2,0,2,0,1,0,0,0,0,0,0,0,0,0,0),(9,'n10_19',1,3,'Num. of Estabs by Empl. Size Class: 10-19 Employees',4,1,10,2,0,2,0,1,0,0,0,0,0,0,0,0,0,0),(10,'n20_49',1,3,'Num. of Estabs by Empl. Size Class: 20-49 Employees',4,1,10,2,0,2,0,1,0,0,0,0,0,0,0,0,0,0),(11,'n50_99',1,3,'Num. of Estabs by Empl. Size Class: 50-99 Employees',4,1,10,2,0,2,0,1,0,0,0,0,0,0,0,0,0,0),(12,'n100_249',1,3,'Num. of Estabs by Empl. Size Class: 100-249 Employees',4,1,10,2,0,2,0,1,0,0,0,0,0,0,0,0,0,0),(13,'n250_499',1,3,'Num. of Estabs by Empl. Size Class: 250-499 Employees',4,1,10,2,0,2,0,1,0,0,0,0,0,0,0,0,0,0),(14,'n500_999',1,3,'Num. of Estabs by Empl. Size Class: 500-999 Employees',4,1,10,2,0,2,0,1,0,0,0,0,0,0,0,0,0,0),(15,'n1000',1,3,'Num. of Estabs by Empl. Size Class: 1000 Or More Employees',4,1,10,2,0,2,0,1,0,0,0,0,0,0,0,0,0,0); UNLOCK TABLES; /*!40000 ALTER TABLE `micro_item` ENABLE KEYS */; -- -- Table structure for table `mnemonicmap` -- DROP TABLE IF EXISTS `mnemonicmap`; CREATE TABLE `mnemonicmap` ( `keywordid` int(11) NOT NULL default '0', `itemid` int(11) NOT NULL default '0', KEY `mnemonic` (`keywordid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `mnemonicmap` -- /*!40000 ALTER TABLE `mnemonicmap` DISABLE KEYS */; LOCK TABLES `mnemonicmap` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `mnemonicmap` ENABLE KEYS */; -- -- Table structure for table `periodmap` -- DROP TABLE IF EXISTS `periodmap`; CREATE TABLE `periodmap` ( `periodid` smallint(6) NOT NULL default '0', `instanceid` int(11) NOT NULL default '0', PRIMARY KEY (`periodid`,`instanceid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `periodmap` -- /*!40000 ALTER TABLE `periodmap` DISABLE KEYS */; LOCK TABLES `periodmap` WRITE; INSERT INTO `periodmap` VALUES (1,2003),(2,2003); UNLOCK TABLES; /*!40000 ALTER TABLE `periodmap` ENABLE KEYS */; -- -- Table structure for table `periodtype` -- DROP TABLE IF EXISTS `periodtype`; CREATE TABLE `periodtype` ( `periodtypeid` tinyint(4) default NULL, `description` varchar(40) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `periodtype` -- /*!40000 ALTER TABLE `periodtype` DISABLE KEYS */; LOCK TABLES `periodtype` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `periodtype` ENABLE KEYS */; -- -- Table structure for table `points` -- DROP TABLE IF EXISTS `points`; CREATE TABLE `points` ( `pointid` int(11) NOT NULL default '0', `xvar` int(11) default NULL, `yvar` int(11) default NULL, `projectionDescription` varchar(255) NOT NULL default '', `defaultLayerCodesetid` smallint(6) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `points` -- /*!40000 ALTER TABLE `points` DISABLE KEYS */; LOCK TABLES `points` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `points` ENABLE KEYS */; -- -- Table structure for table `popest_cotab` -- DROP TABLE IF EXISTS `popest_cotab`; CREATE TABLE `popest_cotab` ( `componentid` smallint(6) NOT NULL default '0', `instanceid` int(11) NOT NULL default '0', `itemid` int(11) NOT NULL default '0', `popest_componentid` smallint(6) NOT NULL default '0', `popest_instanceid` int(11) NOT NULL default '0', `popest_itemid` int(11) NOT NULL default '0', `popest_estimate_itemid` int(11) NOT NULL default '0', UNIQUE KEY `popest_cotab_ndx` (`componentid`,`instanceid`,`itemid`,`popest_estimate_itemid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `popest_cotab` -- /*!40000 ALTER TABLE `popest_cotab` DISABLE KEYS */; LOCK TABLES `popest_cotab` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `popest_cotab` ENABLE KEYS */; -- -- Table structure for table `program_survey` -- DROP TABLE IF EXISTS `program_survey`; CREATE TABLE `program_survey` ( `programid` smallint(6) NOT NULL default '0', `shortname` varchar(12) default NULL, `longname` varchar(255) default NULL, `embargoid` int(11) default NULL, PRIMARY KEY (`programid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `program_survey` -- /*!40000 ALTER TABLE `program_survey` DISABLE KEYS */; LOCK TABLES `program_survey` WRITE; INSERT INTO `program_survey` VALUES (1,'CBP','County Business Patterns',0); UNLOCK TABLES; /*!40000 ALTER TABLE `program_survey` ENABLE KEYS */; -- -- Table structure for table `recode_value` -- DROP TABLE IF EXISTS `recode_value`; CREATE TABLE `recode_value` ( `valueid` int(11) NOT NULL default '0', `value` int(11) NOT NULL default '0', `definition` text, `label` varchar(255) NOT NULL default '', KEY `recode_value_ndx` (`valueid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `recode_value` -- /*!40000 ALTER TABLE `recode_value` DISABLE KEYS */; LOCK TABLES `recode_value` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `recode_value` ENABLE KEYS */; -- -- Table structure for table `recode_valuemap` -- DROP TABLE IF EXISTS `recode_valuemap`; CREATE TABLE `recode_valuemap` ( `itemid` int(11) NOT NULL default '0', `valueid` int(11) NOT NULL default '0', KEY `recode_valuemap_ndx` (`itemid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `recode_valuemap` -- /*!40000 ALTER TABLE `recode_valuemap` DISABLE KEYS */; LOCK TABLES `recode_valuemap` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `recode_valuemap` ENABLE KEYS */; -- -- Table structure for table `required_variables` -- DROP TABLE IF EXISTS `required_variables`; CREATE TABLE `required_variables` ( `componentid` smallint(6) default NULL, `instanceid` int(11) default NULL, `itemid` int(11) default NULL, `defaultValueInd` tinyint(4) default NULL, `defaultValue` varchar(12) default NULL, UNIQUE KEY `req_var` (`componentid`,`instanceid`,`itemid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `required_variables` -- /*!40000 ALTER TABLE `required_variables` DISABLE KEYS */; LOCK TABLES `required_variables` WRITE; INSERT INTO `required_variables` VALUES (1,2003,2,0,NULL); UNLOCK TABLES; /*!40000 ALTER TABLE `required_variables` ENABLE KEYS */; -- -- Table structure for table `special_iteminfo` -- DROP TABLE IF EXISTS `special_iteminfo`; CREATE TABLE `special_iteminfo` ( `itemid` int(11) NOT NULL default '0', `displayHierarchyLevel` tinyint(4) NOT NULL default '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `special_iteminfo` -- /*!40000 ALTER TABLE `special_iteminfo` DISABLE KEYS */; LOCK TABLES `special_iteminfo` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `special_iteminfo` ENABLE KEYS */; -- -- Table structure for table `sponsor` -- DROP TABLE IF EXISTS `sponsor`; CREATE TABLE `sponsor` ( `ipaddr` char(7) default NULL, `ipdescription` char(10) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `sponsor` -- /*!40000 ALTER TABLE `sponsor` DISABLE KEYS */; LOCK TABLES `sponsor` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `sponsor` ENABLE KEYS */; -- -- Table structure for table `subselection` -- DROP TABLE IF EXISTS `subselection`; CREATE TABLE `subselection` ( `subselectionid` smallint(6) NOT NULL default '0', `hvalueid` smallint(6) NOT NULL default '0', `branchleaf` tinyint(4) NOT NULL default '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `subselection` -- /*!40000 ALTER TABLE `subselection` DISABLE KEYS */; LOCK TABLES `subselection` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `subselection` ENABLE KEYS */; -- -- Table structure for table `subsurvey` -- DROP TABLE IF EXISTS `subsurvey`; CREATE TABLE `subsurvey` ( `subsurveyid` tinyint(4) NOT NULL default '0', `name` varchar(255) default NULL, `programid` int(11) NOT NULL default '0', `islongitudinal` tinyint(4) default NULL, `displaytype` tinyint(4) default NULL, PRIMARY KEY (`programid`,`subsurveyid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `subsurvey` -- /*!40000 ALTER TABLE `subsurvey` DISABLE KEYS */; LOCK TABLES `subsurvey` WRITE; INSERT INTO `subsurvey` VALUES (0,'',1,0,1); UNLOCK TABLES; /*!40000 ALTER TABLE `subsurvey` ENABLE KEYS */; -- -- Table structure for table `summarylevelinfo` -- DROP TABLE IF EXISTS `summarylevelinfo`; CREATE TABLE `summarylevelinfo` ( `componentid` smallint(6) NOT NULL default '0', `periodid` smallint(6) NOT NULL default '0', `levelid` smallint(6) NOT NULL default '0', `mnemonic` varchar(12) NOT NULL default '', `summaryval` varchar(12) NOT NULL default '' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `summarylevelinfo` -- /*!40000 ALTER TABLE `summarylevelinfo` DISABLE KEYS */; LOCK TABLES `summarylevelinfo` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `summarylevelinfo` ENABLE KEYS */; -- -- Table structure for table `textmap` -- DROP TABLE IF EXISTS `textmap`; CREATE TABLE `textmap` ( `keywordid` int(11) NOT NULL default '0', `itemid` int(11) NOT NULL default '0', KEY `test` (`keywordid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `textmap` -- /*!40000 ALTER TABLE `textmap` DISABLE KEYS */; LOCK TABLES `textmap` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `textmap` ENABLE KEYS */; -- -- Table structure for table `timeframe` -- DROP TABLE IF EXISTS `timeframe`; CREATE TABLE `timeframe` ( `periodid` smallint(6) default NULL, `startdate` varchar(6) default NULL, `stopdate` varchar(6) default NULL, `periodtypeid` tinyint(4) default NULL, `stopdateflag` char(1) default NULL, `description` varchar(72) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `timeframe` -- /*!40000 ALTER TABLE `timeframe` DISABLE KEYS */; LOCK TABLES `timeframe` WRITE; INSERT INTO `timeframe` VALUES (2,'2003','2003',0,'N','Microitem time frame for componentid: 1'); UNLOCK TABLES; /*!40000 ALTER TABLE `timeframe` ENABLE KEYS */; -- -- Table structure for table `ts_component` -- DROP TABLE IF EXISTS `ts_component`; CREATE TABLE `ts_component` ( `componentid` smallint(6) default NULL, `programid` smallint(6) default NULL, `description` varchar(255) default NULL, `periodid` smallint(6) default NULL, `url_homeid` int(11) default NULL, `url_gifid` int(11) default NULL, `ts_producerid` smallint(6) default NULL, `ts_publisherid` smallint(6) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `ts_component` -- /*!40000 ALTER TABLE `ts_component` DISABLE KEYS */; LOCK TABLES `ts_component` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `ts_component` ENABLE KEYS */; -- -- Table structure for table `ts_item` -- DROP TABLE IF EXISTS `ts_item`; CREATE TABLE `ts_item` ( `itemid` int(11) NOT NULL default '0', `mnemonic` varchar(12) default NULL, `componentid` smallint(6) NOT NULL default '0', `conceptid` int(11) NOT NULL default '0', `shortdescription` varchar(60) default NULL, `BOGUS_DESCRIPTIONURLID` int(11) default NULL, `BOGUS_ANCHOR` varchar(10) default NULL, `securitylevel` tinyint(4) default NULL, `datatype` tinyint(4) default NULL, `itemtypeid` int(11) default NULL, `periodid` smallint(6) default NULL, `sugwgtid` int(11) default NULL, `wgtdvar` int(11) default NULL, `iter_group_id` int(11) default NULL, `unit_typeid` tinyint(4) default NULL, `security_2` tinyint(4) default NULL, `codeset` int(11) default NULL, PRIMARY KEY (`itemid`), KEY `ts_conceptid_index` (`conceptid`), KEY `ts_componentid_index` (`componentid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `ts_item` -- /*!40000 ALTER TABLE `ts_item` DISABLE KEYS */; LOCK TABLES `ts_item` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `ts_item` ENABLE KEYS */; -- -- Table structure for table `ts_program_survey` -- DROP TABLE IF EXISTS `ts_program_survey`; CREATE TABLE `ts_program_survey` ( `programid` smallint(6) default NULL, `shortname` varchar(12) default NULL, `longname` varchar(255) default NULL, `url_homeid` int(11) default NULL, `url_gifid` int(11) default NULL, `ts_typeid` tinyint(4) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `ts_program_survey` -- /*!40000 ALTER TABLE `ts_program_survey` DISABLE KEYS */; LOCK TABLES `ts_program_survey` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `ts_program_survey` ENABLE KEYS */; -- -- Table structure for table `unit_type` -- DROP TABLE IF EXISTS `unit_type`; CREATE TABLE `unit_type` ( `unit_typeid` tinyint(4) default NULL, `abbr` char(3) default NULL, `description` varchar(255) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `unit_type` -- /*!40000 ALTER TABLE `unit_type` DISABLE KEYS */; LOCK TABLES `unit_type` WRITE; INSERT INTO `unit_type` VALUES (1,'ABS','Absolute number'),(2,'AVG','Average'),(3,'DOL','Dollars'),(4,'MIN','Minutes'),(5,'PCT','Percent'),(6,'SQM','Square miles'),(7,'TH$','$1,000'),(8,'RTE','Rate'),(9,'DEG','Degrees'),(10,'INC','Inches'),(11,'PNT','Incident Points'); UNLOCK TABLES; /*!40000 ALTER TABLE `unit_type` ENABLE KEYS */; -- -- Table structure for table `url` -- DROP TABLE IF EXISTS `url`; CREATE TABLE `url` ( `urlid` int(11) default NULL, `machineid` smallint(6) default NULL, `urlname` varchar(80) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `url` -- /*!40000 ALTER TABLE `url` DISABLE KEYS */; LOCK TABLES `url` WRITE; INSERT INTO `url` VALUES (1,2,'/sponsor/images/JointCenters.jpg'),(2,3,'/'); UNLOCK TABLES; /*!40000 ALTER TABLE `url` ENABLE KEYS */; -- -- Table structure for table `value` -- DROP TABLE IF EXISTS `value`; CREATE TABLE `value` ( `valueid` int(11) NOT NULL default '0', `minimum` varchar(12) default NULL, `maximum` varchar(12) default NULL, `description` varchar(100) default NULL, KEY `valueid_index` (`valueid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `value` -- /*!40000 ALTER TABLE `value` DISABLE KEYS */; LOCK TABLES `value` WRITE; INSERT INTO `value` VALUES (1,'01','0','Alabama'),(2,'02','0','Alaska'),(3,'04','0','Arizona'),(4,'05','0','Arkansas'),(5,'06','0','California'),(6,'08','0','Colorado'),(7,'09','0','Connecticut'),(8,'10','0','Delaware'),(9,'11','0','District of Columbia'),(10,'12','0','Florida'),(11,'13','0','Georgia'),(12,'15','0','Hawaii'),(13,'16','0','Idaho'),(14,'17','0','Illinois'),(15,'18','0','Indiana'),(16,'19','0','Iowa'),(17,'20','0','Kansas'),(18,'21','0','Kentucky'),(19,'22','0','Louisiana'),(20,'23','0','Maine'),(21,'24','0','Maryland'),(22,'25','0','Massachusetts'),(23,'26','0','Michigan'),(24,'27','0','Minnesota'),(25,'28','0','Mississippi'),(26,'29','0','Missouri'),(27,'30','0','Montana'),(28,'31','0','Nebraska'),(29,'32','0','Nevada'),(30,'33','0','New Hampshire'),(31,'34','0','New Jersey'),(32,'35','0','New Mexico'),(33,'36','0','New York'),(34,'37','0','North Carolina'),(35,'38','0','North Dakota'),(36,'39','0','Ohio'),(37,'40','0','Oklahoma'),(38,'41','0','Oregon'),(39,'42','0','Pennsylvania'),(40,'44','0','Rhode Island'),(41,'45','0','South Carolina'),(42,'46','0','South Dakota'),(43,'47','0','Tennessee'),(44,'48','0','Texas'),(45,'49','0','Utah'),(46,'50','0','Vermont'),(47,'51','0','Virginia'),(48,'53','0','Washington'),(49,'54','0','West Virginia'),(50,'55','0','Wisconsin'),(51,'56','0','Wyoming'),(52,'------','0','Total'),(53,'11----','0','Forestry, fishing, hunting, and agriculture support'),(54,'113///','0','Forestry and logging'),(55,'114///','0','Fishing, hunting & trapping'),(56,'115///','0','Agriculture & forestry support activities'),(57,'21----','0','Mining'),(58,'211///','0','Oil & gas extraction'),(59,'212///','0','Mining (except oil & gas)'),(60,'213///','0','Mining support activities'),(61,'22----','0','Utilities'),(62,'221///','0','Utilities'),(63,'23----','0','Construction'),(64,'233///','0','Building, developing & general contracting'),(65,'234///','0','Heavy construction'),(66,'235///','0','Special trade contractors'),(67,'31----','0','Manufacturing'),(68,'311///','0','Food mfg'),(69,'312///','0','Beverage & tobacco product mfg'),(70,'313///','0','Textile mills'),(71,'314///','0','Textile product mills'),(72,'315///','0','Apparel manufacturing'),(73,'316///','0','Leather & allied product mfg'),(74,'321///','0','Wood product mfg'),(75,'322///','0','Paper mfg'),(76,'323///','0','Printing & related support activities'),(77,'324///','0','Petroleum & coal products mfg'),(78,'325///','0','Chemical mfg'),(79,'326///','0','Plastics & rubber products mfg'),(80,'327///','0','Nonmetallic mineral product mfg'),(81,'331///','0','Primary metal mfg'),(82,'332///','0','Fabricated metal product mfg'),(83,'333///','0','Machinery mfg'),(84,'334///','0','Computer & electronic product mfg'),(85,'335///','0','Electrical equip, appliance & component mfg'),(86,'336///','0','Transportation equipment mfg'),(87,'337///','0','Furniture & related product mfg'),(88,'339///','0','Miscellaneous mfg'),(89,'42----','0','Wholesale trade'),(90,'421///','0','Wholesale trade, durable goods'),(91,'422///','0','Wholesale trade, nondurable goods'),(92,'44----','0','Retail trade'),(93,'441///','0','Motor vehicle & parts dealers'),(94,'442///','0','Furniture & home furnishing stores'),(95,'443///','0','Electronics & appliance stores'),(96,'444///','0','Bldg material & garden equip & supp dealers'),(97,'445///','0','Food & beverage stores'),(98,'446///','0','Health & personal care stores'),(99,'447///','0','Gasoline stations'),(100,'448///','0','Clothing & clothing accessories stores'),(101,'451///','0','Sporting goods, hobby, book & music stores'),(102,'452///','0','General merchandise stores'),(103,'453///','0','Miscellaneous store retailers'),(104,'454///','0','Nonstore retailers'),(105,'48----','0','Transportation & warehousing'),(106,'481///','0','Air transportation'),(107,'483///','0','Water transportation'),(108,'484///','0','Truck transportation'),(109,'485///','0','Transit & ground passenger transportation'),(110,'486///','0','Pipeline transportation'),(111,'487///','0','Scenic & sightseeing transportation'),(112,'488///','0','Transportation support activities'),(113,'492///','0','Couriers & messengers'),(114,'493///','0','Warehousing & storage'),(115,'51----','0','Information'),(116,'511///','0','Publishing industries'),(117,'512///','0','Motion picture & sound recording industries'),(118,'513///','0','Broadcasting & telecommunications'),(119,'514///','0','Information & data processing services'),(120,'52----','0','Finance & insurance'),(121,'521///','0','Monetary authorities - central bank'),(122,'522///','0','Credit intermediation & related activities'),(123,'523///','0','Security, commodity contracts & like activity'),(124,'524///','0','Insurance carriers & related activities'),(125,'525///','0','Funds, trusts, & other financial vehicles (part)'),(126,'53----','0','Real estate & rental & leasing'),(127,'531///','0','Real estate'),(128,'532///','0','Rental & leasing services'),(129,'533///','0','Lessors of other nonfinancial intangible asset'),(130,'54----','0','Professional, scientific & technical services'),(131,'541///','0','Professional, scientific & technical services'),(132,'55----','0','Management of companies & enterprises'),(133,'551///','0','Management of companies & enterprises'),(134,'56----','0','Admin, support, waste mgt, remediation services'),(135,'561///','0','Administrative & support services'),(136,'562///','0','Waste management & remediation services'),(137,'61----','0','Educational services'),(138,'611///','0','Educational services'),(139,'62----','0','Health care and social assistance'),(140,'621///','0','Ambulatory health care services'),(141,'622///','0','Hospitals'),(142,'623///','0','Nursing & residential care facilities'),(143,'624///','0','Social assistance'),(144,'71----','0','Arts, entertainment & recreation'),(145,'711///','0','Performing arts, spectator sports, & related industries'),(146,'712///','0','Museums, historical sites & like institutions'),(147,'713///','0','Amusement, gambling & recreation industries'),(148,'72----','0','Accommodation & food services'),(149,'721///','0','Accommodation'),(150,'722///','0','Food services & drinking places'),(151,'81----','0','Other services (except public administration)'),(152,'811///','0','Repair & maintenance'),(153,'812///','0','Personal & laundry services'),(154,'813///','0','Religious, grantmaking, civic, prof & like organizations'),(155,'95----','0','Auxiliaries (exc corporate, subsidiary & regional mgt)'),(156,'99----','0','Unclassified establishments'),(157,'A','0','0-19'),(158,'B','0','20-99'),(159,'C','0','100-249'),(160,'E','0','250-499'),(161,'F','0','500-999'),(162,'G','0','1,000-2,499'),(163,'H','0','2,500-4,999'),(164,'I','0','5,000-9,999'),(165,'J','0','10,000-24,999'),(166,'K','0','25,000-49,999'),(167,'L','0','50,000-99,999'),(168,'M','0','100,000 or More'); UNLOCK TABLES; /*!40000 ALTER TABLE `value` ENABLE KEYS */; -- -- Table structure for table `valuelabelmap` -- DROP TABLE IF EXISTS `valuelabelmap`; CREATE TABLE `valuelabelmap` ( `keywordid` int(11) default NULL, `itemid` int(11) default NULL, KEY `value` (`keywordid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `valuelabelmap` -- /*!40000 ALTER TABLE `valuelabelmap` DISABLE KEYS */; LOCK TABLES `valuelabelmap` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `valuelabelmap` ENABLE KEYS */; -- -- Table structure for table `valuemap` -- DROP TABLE IF EXISTS `valuemap`; CREATE TABLE `valuemap` ( `itemid` int(11) NOT NULL default '0', `valueid` int(11) default NULL, KEY `itemid_index` (`itemid`), KEY `valueid_index` (`valueid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `valuemap` -- /*!40000 ALTER TABLE `valuemap` DISABLE KEYS */; LOCK TABLES `valuemap` WRITE; INSERT INTO `valuemap` VALUES (1,1),(1,2),(1,3),(1,4),(1,5),(1,6),(1,7),(1,8),(1,9),(1,10),(1,11),(1,12),(1,13),(1,14),(1,15),(1,16),(1,17),(1,18),(1,19),(1,20),(1,21),(1,22),(1,23),(1,24),(1,25),(1,26),(1,27),(1,28),(1,29),(1,30),(1,31),(1,32),(1,33),(1,34),(1,35),(1,36),(1,37),(1,38),(1,39),(1,40),(1,41),(1,42),(1,43),(1,44),(1,45),(1,46),(1,47),(1,48),(1,49),(1,50),(1,51),(2,52),(2,53),(2,54),(2,55),(2,56),(2,57),(2,58),(2,59),(2,60),(2,61),(2,62),(2,63),(2,64),(2,65),(2,66),(2,67),(2,68),(2,69),(2,70),(2,71),(2,72),(2,73),(2,74),(2,75),(2,76),(2,77),(2,78),(2,79),(2,80),(2,81),(2,82),(2,83),(2,84),(2,85),(2,86),(2,87),(2,88),(2,89),(2,90),(2,91),(2,92),(2,93),(2,94),(2,95),(2,96),(2,97),(2,98),(2,99),(2,100),(2,101),(2,102),(2,103),(2,104),(2,105),(2,106),(2,107),(2,108),(2,109),(2,110),(2,111),(2,112),(2,113),(2,114),(2,115),(2,116),(2,117),(2,118),(2,119),(2,120),(2,121),(2,122),(2,123),(2,124),(2,125),(2,126),(2,127),(2,128),(2,129),(2,130),(2,131),(2,132),(2,133),(2,134),(2,135),(2,136),(2,137),(2,138),(2,139),(2,140),(2,141),(2,142),(2,143),(2,144),(2,145),(2,146),(2,147),(2,148),(2,149),(2,150),(2,151),(2,152),(2,153),(2,154),(2,155),(2,156),(3,157),(3,158),(3,159),(3,160),(3,161),(3,162),(3,163),(3,164),(3,165),(3,166),(3,167),(3,168); UNLOCK TABLES; /*!40000 ALTER TABLE `valuemap` ENABLE KEYS */; -- -- Table structure for table `virtual_id_map` -- DROP TABLE IF EXISTS `virtual_id_map`; CREATE TABLE `virtual_id_map` ( `componentid` smallint(6) NOT NULL default '0', `instanceid` int(11) NOT NULL default '0', `virtual_id` varchar(255) NOT NULL default '' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `virtual_id_map` -- /*!40000 ALTER TABLE `virtual_id_map` DISABLE KEYS */; LOCK TABLES `virtual_id_map` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `virtual_id_map` ENABLE KEYS */; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;