-- MySQL dump 10.13 Distrib 5.1.34, for apple-darwin9.5.0 (i386) -- -- Host: localhost Database: examplestore -- ------------------------------------------------------ -- Server version 5.1.34 /*!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 `customers` -- DROP TABLE IF EXISTS `customers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `customers` ( `id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `id_index` (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customers` -- LOCK TABLES `customers` WRITE; /*!40000 ALTER TABLE `customers` DISABLE KEYS */; INSERT INTO `customers` VALUES (0),(1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11),(12),(13),(14),(15),(16),(17),(18),(19),(20),(21),(22),(23),(24),(25),(26),(27),(28),(29),(30),(31),(32),(33),(34),(35),(36),(37),(38),(39),(40),(41),(42),(43),(44),(45),(46),(47),(48),(49),(50),(51),(52),(53),(54),(55),(56),(57),(58),(59),(60),(61),(62),(63),(64),(65),(66),(67),(68),(69),(70),(71),(72),(73),(74),(75),(76),(77),(78),(79),(80),(81),(82),(83),(84),(85),(86),(87),(88),(89),(90),(91),(92),(93),(94),(95),(96),(97),(98),(99),(100),(101),(102),(103),(104),(105),(106),(107),(108),(109),(110),(111),(112),(113),(114),(115),(116),(117),(118),(119),(120),(121),(122),(123),(124),(125),(126),(127),(128),(129),(130),(131),(132),(133),(134),(135),(136),(137),(138),(139),(140),(141),(142),(143),(144),(145),(146),(147),(148),(149),(150),(151),(152),(153),(154),(155),(156),(157),(158),(159),(160),(161),(162),(163),(164),(165),(166),(167),(168),(169),(170),(171),(172),(173),(174),(175),(176),(177),(178),(179),(180),(181),(182),(183),(184),(185),(186),(187),(188),(189),(190),(191),(192),(193),(194),(195),(196),(197),(198),(199),(200),(201),(202),(203),(204),(205),(206),(207),(208),(209),(210),(211),(212),(213),(214),(215),(216),(217),(218),(219),(220),(221),(222),(223),(224),(225),(226),(227),(228),(229),(230),(231),(232),(233),(234),(235),(236),(237),(238),(239),(240),(241),(242),(243),(244),(245),(246),(247),(248),(249),(250),(251),(252),(253),(254),(255),(256),(257),(258),(259),(260),(261),(262),(263),(264),(265),(266),(267),(268),(269),(270),(271),(272),(273),(274),(275),(276),(277),(278),(279),(280),(281),(282),(283),(284),(285),(286),(287),(288),(289),(290),(291),(292),(293),(294),(295),(296),(297),(298),(299),(300),(301),(302),(303),(304),(305),(306),(307),(308),(309),(310),(311),(312),(313),(314),(315),(316),(317),(318),(319),(320),(321),(322),(323),(324),(325),(326),(327),(328),(329),(330),(331),(332),(333),(334),(335),(336),(337),(338),(339),(340),(341),(342),(343),(344),(345),(346),(347),(348),(349),(350),(351),(352),(353),(354),(355),(356),(357),(358),(359),(360),(361),(362),(363),(364),(365),(366),(367),(368),(369),(370),(371),(372),(373),(374),(375),(376),(377),(378),(379),(380),(381),(382),(383),(384),(385),(386),(387),(388),(389),(390),(391),(392),(393),(394),(395),(396),(397),(398),(399),(400),(401),(402),(403),(404),(405),(406),(407),(408),(409),(410),(411),(412),(413),(414),(415),(416),(417),(418),(419),(420),(421),(422),(423),(424),(425),(426),(427),(428),(429),(430),(431),(432),(433),(434),(435),(436),(437),(438),(439),(440),(441),(442),(443),(444),(445),(446),(447),(448),(449),(450),(451),(452),(453),(454),(455),(456),(457),(458),(459),(460),(461),(462),(463),(464),(465),(466),(467),(468),(469),(470),(471),(472),(473),(474),(475),(476),(477),(478),(479),(480),(481),(482),(483),(484),(485),(486),(487),(488),(489),(490),(491),(492),(493),(494),(495),(496),(497),(498),(499),(500),(501),(502),(503),(504),(505),(506),(507),(508),(509),(510),(511),(512),(513),(514),(515),(516),(517),(518),(519),(520),(521),(522),(523),(524),(525),(526),(527),(528),(529),(530),(531),(532),(533),(534),(535),(536),(537),(538),(539),(540),(541),(542),(543),(544),(545),(546),(547),(548),(549),(550),(551),(552),(553),(554),(555),(556),(557),(558),(559),(560),(561),(562),(563),(564),(565),(566),(567),(568),(569),(570),(571),(572),(573),(574),(575),(576),(577),(578),(579),(580),(581),(582),(583),(584),(585),(586),(587),(588),(589),(590),(591),(592),(593),(594),(595),(596),(597),(598),(599),(600),(601),(602),(603),(604),(605),(606),(607),(608),(609),(610),(611),(612),(613),(614),(615),(616),(617),(618),(619),(620),(621),(622),(623),(624),(625),(626),(627),(628),(629),(630),(631),(632),(633),(634),(635),(636),(637),(638),(639),(640),(641),(642),(643),(644),(645),(646),(647),(648),(649),(650),(651),(652),(653),(654),(655),(656),(657),(658),(659),(660),(661),(662),(663),(664),(665),(666),(667),(668),(669),(670),(671),(672),(673),(674),(675),(676),(677),(678),(679),(680),(681),(682),(683),(684),(685),(686),(687),(688),(689),(690),(691),(692),(693),(694),(695),(696),(697),(698),(699),(700),(701),(702),(703),(704),(705),(706),(707),(708),(709),(710),(711),(712),(713),(714),(715),(716),(717),(718),(719),(720),(721),(722),(723),(724),(725),(726),(727),(728),(729),(730),(731),(732),(733),(734),(735),(736),(737),(738),(739),(740),(741),(742),(743),(744),(745),(746),(747),(748),(749),(750),(751),(752),(753),(754),(755),(756),(757),(758),(759),(760),(761),(762),(763),(764),(765),(766),(767),(768),(769),(770),(771),(772),(773),(774),(775),(776),(777),(778),(779),(780),(781),(782),(783),(784),(785),(786),(787),(788),(789),(790),(791),(792),(793),(794),(795),(796),(797),(798),(799),(800),(801),(802),(803),(804),(805),(806),(807),(808),(809),(810),(811),(812),(813),(814),(815),(816),(817),(818),(819),(820),(821),(822),(823),(824),(825),(826),(827),(828),(829),(830),(831),(832),(833),(834),(835),(836),(837),(838),(839),(840),(841),(842),(843),(844),(845),(846),(847),(848),(849),(850),(851),(852),(853),(854),(855),(856),(857),(858),(859),(860),(861),(862),(863),(864),(865),(866),(867),(868),(869),(870),(871),(872),(873),(874),(875),(876),(877),(878),(879),(880),(881),(882),(883),(884),(885),(886),(887),(888),(889),(890),(891),(892),(893),(894),(895),(896),(897),(898),(899),(900),(901),(902),(903),(904),(905),(906),(907),(908),(909),(910),(911),(912),(913),(914),(915),(916),(917),(918),(919),(920),(921),(922),(923),(924),(925),(926),(927),(928),(929),(930),(931),(932),(933),(934),(935),(936),(937),(938),(939),(940),(941),(942),(943),(944),(945),(946),(947),(948),(949),(950),(951),(952),(953),(954),(955),(956),(957),(958),(959),(960),(961),(962),(963),(964),(965),(966),(967),(968),(969),(970),(971),(972),(973),(974),(975),(976),(977),(978),(979),(980),(981),(982),(983),(984),(985),(986),(987),(988),(989),(990),(991),(992),(993),(994),(995),(996),(997),(998),(999),(1000),(1001),(1002),(1003),(1004),(1005),(1006),(1007),(1008),(1009),(1010),(1011),(1012),(1013),(1014),(1015),(1016),(1017),(1018),(1019),(1020),(1021),(1022),(1023),(1024),(1025),(1026),(1027),(1028),(1029),(1030),(1031),(1032),(1033),(1034),(1035),(1036),(1037),(1038),(1039),(1040),(1041),(1042),(1043),(1044),(1045),(1046),(1047),(1048),(1049),(1050),(1051),(1052),(1053),(1054),(1055),(1056),(1057),(1058),(1059),(1060),(1061),(1062),(1063),(1064),(1065),(1066),(1067),(1068),(1069),(1070),(1071),(1072),(1073),(1074),(1075),(1076),(1077),(1078),(1079),(1080),(1081),(1082),(1083),(1084),(1085),(1086),(1087),(1088),(1089),(1090),(1091),(1092),(1093),(1094),(1095),(1096),(1097),(1098),(1099),(1100),(1101),(1102),(1103),(1104),(1105),(1106),(1107),(1108),(1109),(1110),(1111),(1112),(1113),(1114),(1115),(1116),(1117),(1118),(1119),(1120),(1121),(1122),(1123),(1124),(1125),(1126),(1127),(1128),(1129),(1130),(1131),(1132),(1133),(1134),(1135),(1136),(1137),(1138),(1139),(1140),(1141),(1142),(1143),(1144),(1145),(1146),(1147),(1148),(1149),(1150),(1151),(1152),(1153),(1154),(1155),(1156),(1157),(1158),(1159),(1160),(1161),(1162),(1163),(1164),(1165),(1166),(1167),(1168),(1169),(1170),(1171),(1172),(1173),(1174),(1175),(1176),(1177),(1178),(1179),(1180),(1181),(1182),(1183),(1184),(1185),(1186),(1187),(1188),(1189),(1190),(1191),(1192),(1193),(1194),(1195),(1196),(1197),(1198),(1199),(1200),(1201),(1202),(1203),(1204),(1205),(1206),(1207),(1208),(1209),(1210),(1211),(1212),(1213),(1214),(1215),(1216),(1217),(1218),(1219),(1220),(1221),(1222),(1223),(1224),(1225),(1226),(1227),(1228),(1229),(1230),(1231),(1232),(1233),(1234),(1235),(1236),(1237),(1238),(1239),(1240),(1241),(1242),(1243),(1244),(1245),(1246),(1247),(1248),(1249),(1250),(1251),(1252),(1253),(1254),(1255),(1256),(1257),(1258),(1259),(1260),(1261),(1262),(1263),(1264),(1265),(1266),(1267),(1268),(1269),(1270),(1271),(1272),(1273),(1274),(1275),(1276),(1277),(1278),(1279),(1280),(1281),(1282),(1283),(1284),(1285),(1286),(1287),(1288),(1289),(1290),(1291),(1292),(1293),(1294),(1295),(1296),(1297),(1298),(1299),(1300),(1301),(1302),(1303),(1304),(1305),(1306),(1307),(1308),(1309),(1310),(1311),(1312),(1313),(1314),(1315),(1316),(1317),(1318),(1319),(1320),(1321),(1322),(1323),(1324),(1325),(1326),(1327),(1328),(1329),(1330),(1331),(1332),(1333),(1334),(1335),(1336),(1337),(1338),(1339),(1340),(1341),(1342),(1343),(1344),(1345),(1346),(1347),(1348),(1349),(1350),(1351),(1352),(1353),(1354),(1355),(1356),(1357),(1358),(1359),(1360),(1361),(1362),(1363),(1364),(1365),(1366),(1367),(1368),(1369),(1370),(1371),(1372),(1373),(1374),(1375),(1376),(1377),(1378),(1379),(1380),(1381),(1382),(1383),(1384),(1385),(1386),(1387),(1388),(1389),(1390),(1391),(1392),(1393),(1394),(1395),(1396),(1397),(1398),(1399),(1400),(1401),(1402),(1403),(1404),(1405),(1406),(1407),(1408),(1409),(1410),(1411),(1412),(1413),(1414),(1415),(1416),(1417),(1418),(1419),(1420),(1421),(1422),(1423),(1424),(1425),(1426),(1427),(1428),(1429),(1430),(1431),(1432),(1433),(1434),(1435),(1436),(1437),(1438),(1439),(1440),(1441),(1442),(1443),(1444),(1445),(1446),(1447),(1448),(1449),(1450),(1451),(1452),(1453),(1454),(1455),(1456),(1457),(1458),(1459),(1460),(1461),(1462),(1463),(1464),(1465),(1466),(1467),(1468),(1469),(1470),(1471),(1472),(1473),(1474),(1475),(1476),(1477),(1478),(1479),(1480),(1481),(1482),(1483),(1484),(1485),(1486),(1487),(1488),(1489),(1490),(1491),(1492),(1493),(1494),(1495),(1496),(1497),(1498),(1499),(1500),(1501),(1502),(1503),(1504),(1505),(1506),(1507),(1508),(1509),(1510),(1511),(1512),(1513),(1514),(1515),(1516),(1517),(1518),(1519),(1520),(1521),(1522),(1523),(1524),(1525),(1526),(1527),(1528),(1529),(1530),(1531),(1532),(1533),(1534),(1535),(1536),(1537),(1538),(1539),(1540),(1541),(1542),(1543),(1544),(1545),(1546),(1547),(1548),(1549),(1550),(1551),(1552),(1553),(1554),(1555),(1556),(1557),(1558),(1559),(1560),(1561),(1562),(1563),(1564),(1565),(1566),(1567),(1568),(1569),(1570),(1571),(1572),(1573),(1574),(1575),(1576),(1577),(1578),(1579),(1580),(1581),(1582),(1583),(1584),(1585),(1586),(1587),(1588),(1589),(1590),(1591),(1592),(1593),(1594),(1595),(1596),(1597),(1598),(1599),(1600),(1601),(1602),(1603),(1604),(1605),(1606),(1607),(1608),(1609),(1610),(1611),(1612),(1613),(1614),(1615),(1616),(1617),(1618),(1619),(1620),(1621),(1622),(1623),(1624),(1625),(1626),(1627),(1628),(1629),(1630),(1631),(1632),(1633),(1634),(1635),(1636),(1637),(1638),(1639),(1640),(1641),(1642),(1643),(1644),(1645),(1646),(1647),(1648),(1649),(1650),(1651),(1652),(1653),(1654),(1655),(1656),(1657),(1658),(1659),(1660),(1661),(1662),(1663),(1664),(1665),(1666),(1667),(1668),(1669),(1670),(1671),(1672),(1673),(1674),(1675),(1676),(1677),(1678),(1679),(1680),(1681),(1682),(1683),(1684),(1685),(1686),(1687),(1688),(1689),(1690),(1691),(1692),(1693),(1694),(1695),(1696),(1697),(1698),(1699),(1700),(1701),(1702),(1703),(1704),(1705),(1706),(1707),(1708),(1709),(1710),(1711),(1712),(1713),(1714),(1715),(1716),(1717),(1718),(1719),(1720),(1721),(1722),(1723),(1724),(1725),(1726),(1727),(1728),(1729),(1730),(1731),(1732),(1733),(1734),(1735),(1736),(1737),(1738),(1739),(1740),(1741),(1742),(1743),(1744),(1745),(1746),(1747),(1748),(1749),(1750),(1751),(1752),(1753),(1754),(1755),(1756),(1757),(1758),(1759),(1760),(1761),(1762),(1763),(1764),(1765),(1766),(1767),(1768),(1769),(1770),(1771),(1772),(1773),(1774),(1775),(1776),(1777),(1778),(1779),(1780),(1781),(1782),(1783),(1784),(1785),(1786),(1787),(1788),(1789),(1790),(1791),(1792),(1793),(1794),(1795),(1796),(1797),(1798),(1799),(1800),(1801),(1802),(1803),(1804),(1805),(1806),(1807),(1808),(1809),(1810),(1811),(1812),(1813),(1814),(1815),(1816),(1817),(1818),(1819),(1820),(1821),(1822),(1823),(1824),(1825),(1826),(1827),(1828),(1829),(1830),(1831),(1832),(1833),(1834),(1835),(1836),(1837),(1838),(1839),(1840),(1841),(1842),(1843),(1844),(1845),(1846),(1847),(1848),(1849),(1850),(1851),(1852),(1853),(1854),(1855),(1856),(1857),(1858),(1859),(1860),(1861),(1862),(1863),(1864),(1865),(1866),(1867),(1868),(1869),(1870),(1871),(1872),(1873),(1874),(1875),(1876),(1877),(1878),(1879),(1880),(1881),(1882),(1883),(1884),(1885),(1886),(1887),(1888),(1889),(1890),(1891),(1892),(1893),(1894),(1895),(1896),(1897),(1898),(1899),(1900),(1901),(1902),(1903),(1904),(1905),(1906),(1907),(1908),(1909),(1910),(1911),(1912),(1913),(1914),(1915),(1916),(1917),(1918),(1919),(1920),(1921),(1922),(1923),(1924),(1925),(1926),(1927),(1928),(1929),(1930),(1931),(1932),(1933),(1934),(1935),(1936),(1937),(1938),(1939),(1940),(1941),(1942),(1943),(1944),(1945),(1946),(1947),(1948),(1949),(1950),(1951),(1952),(1953),(1954),(1955),(1956),(1957),(1958),(1959),(1960),(1961),(1962),(1963),(1964),(1965),(1966),(1967),(1968),(1969),(1970),(1971),(1972),(1973),(1974),(1975),(1976),(1977),(1978),(1979),(1980),(1981),(1982),(1983),(1984),(1985),(1986),(1987),(1988),(1989),(1990),(1991),(1992),(1993),(1994),(1995),(1996),(1997),(1998),(1999); /*!40000 ALTER TABLE `customers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `products` -- DROP TABLE IF EXISTS `products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `products` ( `id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `id_index` (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `products` -- LOCK TABLES `products` WRITE; /*!40000 ALTER TABLE `products` DISABLE KEYS */; INSERT INTO `products` VALUES (0),(1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11),(12),(13),(14),(15),(16),(17),(18),(19),(20),(21),(22),(23),(24),(25),(26),(27),(28),(29),(30),(31),(32),(33),(34),(35),(36),(37),(38),(39),(40),(41),(42),(43),(44),(45),(46),(47),(48),(49),(50),(51),(52),(53),(54),(55),(56),(57),(58),(59),(60),(61),(62),(63),(64),(65),(66),(67),(68),(69),(70),(71),(72),(73),(74),(75),(76),(77),(78),(79),(80),(81),(82),(83),(84),(85),(86),(87),(88),(89),(90),(91),(92),(93),(94),(95),(96),(97),(98),(99),(100),(101),(102),(103),(104),(105),(106),(107),(108),(109),(110),(111),(112),(113),(114),(115),(116),(117),(118),(119),(120),(121),(122),(123),(124),(125),(126),(127),(128),(129),(130),(131),(132),(133),(134),(135),(136),(137),(138),(139),(140),(141),(142),(143),(144),(145),(146),(147),(148),(149),(150),(151),(152),(153),(154),(155),(156),(157),(158),(159),(160),(161),(162),(163),(164),(165),(166),(167),(168),(169),(170),(171),(172),(173),(174),(175),(176),(177),(178),(179),(180),(181),(182),(183),(184),(185),(186),(187),(188),(189),(190),(191),(192),(193),(194),(195),(196),(197),(198),(199),(200),(201),(202),(203),(204),(205),(206),(207),(208),(209),(210),(211),(212),(213),(214),(215),(216),(217),(218),(219),(220),(221),(222),(223),(224),(225),(226),(227),(228),(229),(230),(231),(232),(233),(234),(235),(236),(237),(238),(239),(240),(241),(242),(243),(244),(245),(246),(247),(248),(249),(250),(251),(252),(253),(254),(255),(256),(257),(258),(259),(260),(261),(262),(263),(264),(265),(266),(267),(268),(269),(270),(271),(272),(273),(274),(275),(276),(277),(278),(279),(280),(281),(282),(283),(284),(285),(286),(287),(288),(289),(290),(291),(292),(293),(294),(295),(296),(297),(298),(299),(300),(301),(302),(303),(304),(305),(306),(307),(308),(309),(310),(311),(312),(313),(314),(315),(316),(317),(318),(319),(320),(321),(322),(323),(324),(325),(326),(327),(328),(329),(330),(331),(332),(333),(334),(335),(336),(337),(338),(339),(340),(341),(342),(343),(344),(345),(346),(347),(348),(349),(350),(351),(352),(353),(354),(355),(356),(357),(358),(359),(360),(361),(362),(363),(364),(365),(366),(367),(368),(369),(370),(371),(372),(373),(374),(375),(376),(377),(378),(379),(380),(381),(382),(383),(384),(385),(386),(387),(388),(389),(390),(391),(392),(393),(394),(395),(396),(397),(398),(399),(400),(401),(402),(403),(404),(405),(406),(407),(408),(409),(410),(411),(412),(413),(414),(415),(416),(417),(418),(419),(420),(421),(422),(423),(424),(425),(426),(427),(428),(429),(430),(431),(432),(433),(434),(435),(436),(437),(438),(439),(440),(441),(442),(443),(444),(445),(446),(447),(448),(449),(450),(451),(452),(453),(454),(455),(456),(457),(458),(459),(460),(461),(462),(463),(464),(465),(466),(467),(468),(469),(470),(471),(472),(473),(474),(475),(476),(477),(478),(479),(480),(481),(482),(483),(484),(485),(486),(487),(488),(489),(490),(491),(492),(493),(494),(495),(496),(497),(498),(499); /*!40000 ALTER TABLE `products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `purchases` -- DROP TABLE IF EXISTS `purchases`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `purchases` ( `customer` int(11) NOT NULL, `product` int(11) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `purchases` -- LOCK TABLES `purchases` WRITE; /*!40000 ALTER TABLE `purchases` DISABLE KEYS */; INSERT INTO `purchases` VALUES (1,69),(1,324),(1,194),(1,232),(1,324),(1,5),(1,243),(1,57),(1,370),(1,423),(1,417),(1,327),(1,72),(1,270),(1,219),(1,148),(1,225),(1,143),(1,475),(1,181),(1,220),(1,270),(1,11),(1,451),(1,209),(1,365),(1,486),(1,85),(1,229),(2,391),(2,113),(4,412),(4,61),(4,301),(4,414),(4,287),(4,295),(4,394),(4,494),(4,200),(4,147),(4,160),(4,360),(4,4),(4,285),(4,355),(4,146),(4,255),(4,336),(4,150),(4,293),(4,281),(4,389),(4,159),(4,84),(4,352),(4,25),(4,369),(4,3),(4,246),(6,363),(6,168),(6,464),(6,497),(6,376),(6,39),(6,454),(6,250),(6,251),(6,94),(6,230),(6,490),(6,241),(6,282),(6,410),(6,46),(6,168),(6,442),(7,381),(7,28),(7,189),(7,338),(7,451),(7,38),(7,103),(7,268),(7,108),(8,466),(8,66),(9,452),(11,24),(11,485),(11,124),(11,438),(13,222),(13,132),(13,44),(13,26),(13,108),(13,351),(13,443),(13,69),(13,343),(13,459),(13,326),(13,458),(13,38),(13,493),(13,202),(13,44),(13,395),(13,217),(13,302),(13,104),(13,20),(13,141),(13,368),(13,42),(13,100),(13,306),(13,475),(13,428),(13,316),(15,265),(15,325),(15,198),(15,3),(17,342),(17,408),(17,310),(17,182),(17,15),(17,309),(17,320),(17,460),(17,151),(17,376),(17,428),(17,411),(17,53),(17,246),(17,69),(17,468),(17,459),(17,241),(17,306),(17,154),(18,200),(18,379),(18,293),(18,333),(18,417),(18,7),(18,145),(18,18),(18,478),(18,241),(18,80),(18,278),(18,346),(18,254),(18,272),(18,448),(18,329),(18,174),(18,368),(18,276),(18,132),(18,118),(18,274),(18,416),(18,59),(18,33),(18,309),(19,18),(19,245),(19,155),(19,431),(19,377),(19,309),(19,94),(19,184),(19,181),(19,149),(19,164),(19,394),(19,359),(19,25),(19,47),(22,352),(22,57),(22,259),(22,18),(22,229),(22,193),(22,7),(22,64),(22,423),(22,243),(22,313),(22,113),(22,471),(22,362),(22,287),(22,221),(22,182),(22,365),(22,153),(22,468),(22,23),(22,194),(22,50),(22,232),(22,449),(22,108),(22,34),(22,71),(22,490),(23,421),(23,114),(23,334),(23,347),(23,230),(23,203),(23,405),(23,162),(23,188),(23,241),(23,235),(23,9),(23,153),(23,397),(23,177),(23,4),(23,490),(24,348),(24,61),(24,76),(24,296),(24,242),(24,255),(24,70),(24,307),(24,343),(24,211),(24,228),(24,67),(28,222),(28,187),(28,444),(28,401),(28,320),(28,76),(28,128),(28,482),(28,110),(28,136),(28,163),(28,460),(28,453),(28,474),(28,306),(28,76),(28,18),(28,239),(28,103),(28,8),(28,322),(28,118),(29,24),(29,270),(29,100),(29,206),(29,317),(29,250),(29,261),(29,343),(29,3),(29,448),(29,308),(29,165),(29,365),(29,202),(29,34),(29,239),(29,387),(29,294),(29,304),(29,228),(29,244),(29,15),(32,75),(32,316),(32,394),(33,486),(33,498),(33,467),(34,385),(35,104),(35,391),(35,81),(35,110),(35,359),(35,13),(35,365),(35,398),(36,245),(36,141),(36,48),(36,433),(36,68),(36,177),(36,421),(36,138),(36,42),(36,295),(36,211),(36,88),(39,180),(39,15),(39,299),(39,436),(39,238),(39,215),(39,330),(39,12),(39,120),(39,16),(40,53),(40,101),(40,234),(40,170),(40,42),(40,242),(40,195),(40,223),(40,119),(40,244),(40,472),(40,318),(40,499),(40,185),(40,354),(40,349),(40,191),(40,234),(40,396),(40,281),(40,192),(40,426),(40,281),(40,56),(40,160),(40,18),(40,178),(40,346),(41,330),(41,448),(41,18),(41,401),(41,255),(41,164),(41,477),(41,257),(41,441),(41,34),(41,485),(41,443),(41,290),(41,31),(41,454),(41,197),(41,5),(41,340),(41,402),(41,417),(41,186),(41,109),(41,174),(41,26),(41,56),(41,252),(41,117),(41,198),(42,127),(42,486),(42,237),(42,372),(42,82),(42,256),(42,48),(42,131),(42,219),(42,321),(42,379),(42,92),(42,210),(42,443),(42,0),(43,393),(43,233),(43,258),(43,418),(43,151),(43,276),(43,366),(43,445),(43,233),(43,247),(43,155),(43,486),(43,334),(43,441),(43,495),(43,315),(43,2),(44,248),(44,248),(44,52),(44,27),(44,319),(44,229),(44,444),(44,319),(44,34),(44,53),(44,297),(44,445),(44,256),(44,137),(44,492),(44,425),(44,118),(44,7),(44,358),(44,454),(45,257),(45,230),(45,281),(45,177),(45,207),(45,348),(45,68),(45,277),(45,178),(45,444),(45,414),(45,213),(45,496),(45,61),(45,69),(45,123),(45,67),(45,235),(45,248),(45,467),(45,29),(45,313),(45,86),(45,256),(45,495),(45,180),(46,418),(46,192),(46,246),(46,27),(46,492),(46,52),(46,234),(46,497),(46,363),(47,339),(47,289),(47,426),(47,3),(47,73),(47,238),(47,399),(47,478),(47,201),(47,423),(47,175),(47,53),(47,329),(47,291),(47,455),(47,334),(47,66),(47,463),(47,338),(47,496),(47,208),(48,166),(48,50),(48,226),(48,279),(48,449),(48,39),(48,272),(48,95),(50,41),(50,278),(50,99),(50,420),(50,217),(50,409),(50,232),(50,46),(50,12),(50,305),(50,31),(50,116),(50,316),(50,199),(50,80),(50,343),(50,315),(50,480),(50,222),(50,449),(50,276),(50,391),(50,325),(50,129),(51,152),(51,320),(51,202),(52,345),(52,18),(52,117),(52,282),(52,410),(52,348),(52,21),(53,365),(53,170),(53,315),(53,21),(53,485),(53,193),(53,372),(53,414),(53,118),(53,82),(53,367),(53,466),(55,121),(55,414),(55,137),(55,41),(55,7),(55,430),(55,351),(55,312),(55,443),(55,82),(55,466),(55,297),(55,194),(55,47),(55,31),(55,0),(55,243),(55,485),(55,311),(55,361),(55,314),(55,21),(55,422),(55,18),(55,62),(55,266),(55,334),(55,70),(56,82),(56,43),(56,376),(56,59),(56,449),(56,431),(56,290),(56,338),(56,304),(56,329),(56,19),(56,126),(56,337),(56,48),(56,337),(56,199),(56,481),(56,423),(56,35),(56,458),(56,268),(56,159),(56,338),(56,256),(56,337),(56,420),(56,203),(59,319),(59,198),(59,426),(59,330),(59,99),(59,262),(59,293),(59,43),(59,183),(59,153),(59,161),(59,413),(59,27),(59,274),(59,280),(59,258),(59,101),(59,91),(59,50),(60,210),(60,22),(60,30),(60,65),(60,493),(60,168),(60,327),(60,27),(60,72),(60,397),(60,307),(60,355),(60,424),(60,274),(60,314),(60,385),(60,352),(60,432),(60,321),(60,254),(60,172),(60,149),(60,17),(60,304),(60,456),(60,167),(60,425),(60,100),(61,104),(61,141),(61,17),(61,194),(61,45),(61,47),(61,328),(61,84),(61,153),(61,370),(61,460),(61,443),(61,451),(62,436),(62,38),(62,185),(62,13),(62,463),(62,331),(62,63),(62,69),(62,392),(62,422),(62,220),(62,290),(62,227),(62,201),(62,82),(62,242),(62,449),(62,31),(62,284),(62,322),(62,428),(62,452),(62,121),(62,248),(62,390),(62,28),(64,279),(64,294),(66,263),(66,464),(66,229),(66,437),(66,50),(66,78),(66,123),(66,22),(66,110),(66,85),(66,490),(66,481),(66,449),(66,99),(66,446),(66,116),(67,126),(67,340),(67,36),(67,342),(67,127),(67,266),(67,135),(67,183),(67,225),(67,486),(67,58),(68,0),(69,230),(69,23),(69,337),(69,482),(69,395),(69,187),(69,213),(69,72),(69,226),(69,123),(69,238),(69,80),(69,476),(69,447),(69,294),(69,128),(69,213),(69,352),(70,44),(70,463),(70,125),(70,180),(70,326),(70,152),(70,91),(70,168),(70,376),(70,258),(70,421),(70,392),(70,351),(70,323),(70,237),(70,158),(70,196),(70,134),(70,364),(70,36),(70,465),(70,479),(70,195),(70,227),(70,378),(70,199),(70,449),(70,41),(70,139),(73,447),(73,311),(73,20),(73,27),(73,92),(74,254),(74,82),(74,268),(74,0),(74,321),(74,364),(74,174),(74,443),(74,420),(74,418),(74,138),(74,431),(74,240),(74,267),(74,394),(74,356),(74,83),(74,166),(74,50),(74,388),(74,117),(74,199),(74,481),(74,40),(74,473),(74,260),(74,137),(74,273),(74,495),(76,499),(76,483),(76,348),(76,135),(76,99),(78,371),(78,326),(78,144),(78,67),(78,97),(78,489),(78,427),(78,151),(78,22),(78,314),(78,231),(78,347),(78,42),(78,221),(78,112),(78,160),(78,391),(78,230),(78,353),(78,127),(78,320),(78,416),(79,395),(79,345),(79,157),(79,27),(79,466),(79,64),(79,28),(79,297),(79,113),(79,233),(79,326),(79,284),(79,89),(79,332),(79,374),(79,107),(79,200),(79,450),(79,124),(79,423),(79,310),(79,329),(79,60),(79,295),(79,469),(79,242),(82,448),(82,240),(82,391),(83,191),(83,36),(83,442),(83,287),(83,337),(83,312),(83,314),(83,463),(83,209),(83,129),(83,167),(83,408),(83,202),(83,262),(83,213),(83,303),(83,173),(83,383),(83,179),(83,317),(83,162),(83,57),(83,308),(84,344),(84,144),(84,5),(84,427),(85,160),(85,255),(85,84),(85,185),(85,308),(85,315),(85,295),(85,149),(85,404),(85,249),(85,223),(85,372),(85,245),(85,391),(86,221),(86,217),(86,438),(88,362),(88,120),(88,489),(88,50),(88,366),(88,301),(88,149),(89,446),(89,296),(89,354),(89,254),(89,161),(90,78),(90,73),(91,90),(91,161),(91,175),(91,299),(91,483),(91,121),(92,11),(92,63),(92,246),(92,302),(92,289),(92,309),(92,464),(92,315),(92,428),(92,69),(92,346),(92,245),(92,221),(92,28),(92,127),(92,301),(93,316),(93,261),(93,28),(93,386),(94,469),(94,222),(94,448),(94,247),(94,331),(94,279),(94,137),(94,280),(94,2),(94,165),(94,365),(94,200),(94,387),(94,424),(94,146),(94,94),(94,10),(94,38),(94,294),(94,124),(94,9),(94,465),(94,123),(95,242),(95,244),(96,348),(96,499),(96,98),(97,93),(97,422),(97,230),(97,15),(97,91),(98,71),(98,40),(99,397),(99,132),(99,136),(99,45),(99,314),(99,493),(99,7),(99,269),(99,459),(99,195),(99,360),(99,464),(99,310),(99,115),(99,391),(99,67),(99,258),(99,9),(99,299),(99,229),(99,201),(99,80),(100,98),(100,239),(100,250),(100,100),(100,382),(100,42),(100,97),(100,434),(100,193),(100,151),(100,77),(100,103),(100,52),(100,462),(100,122),(100,131),(100,318),(100,11),(100,179),(100,373),(100,131),(100,56),(100,251),(100,318),(100,258),(100,304),(101,85),(102,317),(102,306),(102,171),(102,253),(103,270),(103,420),(103,83),(103,146),(103,391),(103,108),(103,279),(103,372),(103,103),(103,70),(103,286),(103,451),(103,99),(103,99),(103,99),(103,354),(103,365),(103,169),(103,42),(103,210),(103,36),(103,200),(103,342),(103,311),(103,63),(103,465),(103,435),(103,119),(103,353),(104,212),(104,315),(104,112),(104,263),(104,449),(104,95),(104,151),(104,265),(104,463),(104,442),(104,281),(104,209),(104,487),(104,412),(104,289),(104,140),(104,32),(104,411),(105,254),(105,479),(105,217),(105,443),(105,462),(105,149),(105,155),(105,322),(105,172),(105,498),(105,423),(105,122),(105,201),(105,427),(105,292),(105,391),(105,320),(105,230),(105,243),(105,282),(106,250),(106,340),(106,292),(106,420),(106,53),(106,173),(106,210),(106,270),(106,364),(106,472),(106,264),(106,451),(106,307),(106,255),(106,453),(106,154),(106,322),(106,233),(106,446),(106,366),(106,162),(106,287),(106,232),(106,292),(107,394),(107,186),(108,218),(108,464),(108,54),(108,66),(108,323),(108,33),(108,98),(108,464),(108,187),(108,29),(108,47),(108,468),(108,252),(108,451),(108,462),(108,389),(108,170),(108,125),(108,490),(108,61),(108,120),(108,223),(108,423),(108,249),(108,154),(108,426),(108,465),(108,176),(111,57),(111,404),(111,471),(111,137),(111,389),(111,383),(111,181),(111,391),(111,104),(111,461),(111,362),(111,347),(111,150),(111,420),(111,23),(111,419),(111,66),(111,420),(111,69),(112,165),(112,93),(112,295),(112,183),(112,308),(112,85),(112,99),(112,17),(112,490),(114,497),(114,15),(114,486),(114,175),(114,251),(114,51),(116,61),(116,18),(116,46),(117,142),(117,203),(117,140),(117,379),(117,495),(117,244),(117,16),(117,229),(117,439),(117,226),(118,4),(118,306),(121,315),(121,73),(121,172),(121,0),(121,30),(121,95),(121,481),(121,321),(121,183),(121,21),(121,153),(121,358),(121,446),(121,237),(121,357),(121,83),(121,257),(121,309),(121,277),(121,370),(121,281),(121,422),(121,163),(121,25),(121,315),(121,221),(121,39),(122,126),(122,323),(122,366),(122,416),(122,123),(122,36),(124,452),(124,439),(124,192),(124,165),(124,428),(124,167),(124,482),(124,401),(124,105),(125,364),(125,103),(125,51),(125,315),(125,169),(125,271),(125,448),(125,143),(125,415),(125,188),(125,240),(125,395),(125,122),(125,158),(125,479),(125,418),(126,370),(126,225),(126,5),(127,301),(127,205),(127,145),(127,275),(127,426),(127,195),(127,209),(127,17),(127,36),(127,361),(127,151),(127,323),(127,27),(127,330),(127,414),(127,72),(127,419),(127,180),(127,379),(127,21),(127,199),(127,19),(127,173),(127,159),(127,334),(127,364),(127,463),(127,315),(127,46),(128,290),(128,463),(128,177),(129,293),(129,163),(129,275),(129,33),(129,156),(129,133),(129,446),(129,381),(129,273),(129,165),(129,85),(129,209),(129,361),(129,424),(129,487),(129,454),(129,242),(129,241),(129,391),(129,177),(129,185),(129,384),(129,221),(129,246),(129,94),(130,198),(130,457),(131,136),(131,342),(131,495),(131,413),(131,90),(131,110),(131,330),(131,476),(131,182),(131,332),(131,21),(131,35),(131,310),(131,78),(131,136),(131,499),(131,189),(131,126),(131,400),(131,282),(131,392),(131,455),(131,100),(131,150),(131,1),(131,342),(131,257),(132,178),(132,334),(132,84),(132,412),(132,64),(132,285),(132,137),(132,166),(132,473),(132,359),(132,427),(132,258),(132,139),(132,321),(132,200),(132,293),(132,141),(132,415),(132,365),(132,327),(132,17),(132,241),(132,4),(132,115),(132,374),(132,106),(132,432),(132,372),(136,77),(136,392),(136,239),(136,210),(136,136),(136,77),(136,32),(136,478),(136,396),(136,68),(136,98),(136,108),(136,19),(136,183),(136,50),(136,202),(136,395),(136,2),(136,96),(136,366),(136,481),(136,137),(136,392),(136,120),(136,422),(136,155),(136,463),(136,99),(137,235),(137,91),(137,83),(137,51),(137,394),(137,367),(137,43),(137,322),(137,295),(137,481),(137,377),(137,441),(137,26),(137,161),(137,29),(137,297),(137,116),(137,92),(137,281),(137,222),(137,225),(137,58),(137,85),(137,134),(137,301),(137,463),(137,482),(138,244),(138,258),(138,490),(138,139),(138,269),(138,485),(138,179),(138,10),(138,320),(138,153),(138,463),(138,114),(138,211),(138,201),(138,291),(139,165),(139,444),(139,40),(139,88),(139,345),(139,185),(139,478),(139,159),(139,270),(140,107),(140,135),(140,51),(140,99),(140,302),(140,461),(140,485),(140,288),(140,449),(140,265),(140,318),(140,365),(140,197),(140,414),(140,449),(140,97),(140,107),(140,153),(140,474),(140,45),(140,40),(140,239),(140,2),(140,379),(140,284),(140,343),(140,285),(140,1),(140,8),(141,56),(141,225),(141,483),(141,207),(141,317),(141,218),(141,46),(141,87),(141,258),(141,292),(141,61),(141,238),(141,399),(141,308),(141,207),(141,455),(141,430),(141,141),(141,326),(141,318),(141,52),(141,199),(141,300),(141,149),(141,361),(141,463),(141,363),(141,295),(141,15),(142,218),(142,195),(142,494),(142,275),(142,253),(142,153),(142,303),(142,415),(142,68),(142,154),(142,418),(142,151),(142,401),(142,198),(142,257),(142,200),(142,170),(142,298),(142,309),(142,99),(142,246),(142,2),(142,169),(142,80),(142,252),(142,140),(142,122),(143,172),(143,422),(143,327),(143,98),(143,202),(143,388),(143,359),(143,426),(143,56),(143,209),(143,266),(143,439),(143,468),(143,382),(143,161),(146,31),(146,244),(146,285),(146,98),(146,292),(146,148),(146,497),(146,336),(146,496),(146,205),(146,204),(146,230),(146,265),(146,240),(146,458),(146,170),(146,76),(146,429),(146,451),(146,240),(146,495),(146,329),(146,49),(146,458),(146,182),(146,262),(146,22),(147,296),(147,269),(147,343),(147,116),(147,363),(147,370),(147,492),(147,70),(147,467),(147,125),(147,369),(148,349),(148,268),(148,405),(148,378),(148,439),(150,177),(150,102),(150,218),(150,257),(150,387),(150,125),(150,199),(151,74),(151,31),(151,478),(151,456),(151,330),(151,174),(151,163),(151,314),(151,428),(151,193),(152,352),(152,340),(152,255),(152,376),(152,143),(152,168),(152,131),(152,181),(152,323),(152,302),(152,313),(152,314),(152,255),(152,272),(152,468),(152,229),(152,142),(152,433),(152,498),(152,413),(152,354),(152,130),(152,465),(152,300),(152,285),(152,414),(154,387),(154,225),(154,494),(154,463),(154,83),(154,346),(154,324),(154,421),(155,423),(155,278),(155,330),(155,124),(155,142),(155,467),(155,134),(155,409),(155,466),(155,257),(155,431),(155,56),(155,331),(155,140),(155,43),(157,98),(157,386),(157,490),(157,25),(157,493),(157,200),(157,264),(157,99),(157,202),(157,196),(157,476),(157,22),(157,233),(157,169),(157,147),(157,428),(157,466),(157,293),(157,104),(157,224),(157,62),(157,261),(157,112),(157,220),(157,187),(157,146),(157,85),(157,190),(157,445),(159,260),(159,179),(159,256),(159,277),(159,234),(159,456),(159,176),(159,38),(159,17),(159,78),(159,163),(159,465),(159,30),(159,36),(159,435),(160,57),(160,305),(160,267),(160,332),(160,190),(160,42),(160,55),(160,106),(160,208),(160,291),(160,228),(160,432),(160,241),(160,364),(160,15),(160,392),(160,324),(160,382),(160,51),(160,160),(160,318),(160,182),(160,334),(160,31),(160,318),(160,262),(160,59),(160,83),(161,116),(161,27),(161,468),(161,174),(161,294),(161,464),(161,242),(161,215),(161,123),(161,414),(161,332),(161,349),(161,406),(161,22),(161,418),(161,220),(161,440),(161,300),(161,251),(161,439),(161,487),(161,375),(161,127),(161,259),(161,252),(161,49),(161,479),(161,86),(162,162),(162,61),(162,472),(162,485),(162,128),(162,473),(162,488),(162,281),(162,217),(162,436),(162,92),(162,311),(162,313),(162,149),(162,347),(162,235),(162,336),(162,242),(162,417),(162,437),(162,467),(162,124),(162,414),(162,175),(162,475),(162,139),(162,217),(162,202),(163,348),(163,167),(163,177),(165,493),(165,306),(165,240),(165,142),(165,356),(165,165),(165,48),(165,434),(165,410),(165,209),(165,198),(165,286),(165,486),(165,218),(165,204),(165,266),(165,145),(165,315),(165,140),(167,206),(167,10),(167,203),(167,232),(167,59),(167,208),(167,489),(167,63),(167,233),(167,189),(167,113),(168,383),(168,431),(168,485),(168,290),(168,107),(168,448),(168,140),(168,93),(168,349),(168,14),(168,286),(168,444),(168,465),(168,159),(168,68),(168,373),(168,305),(168,391),(168,140),(168,492),(168,224),(168,158),(168,279),(168,407),(168,44),(168,369),(168,424),(168,466),(168,188),(169,41),(169,439),(169,377),(169,146),(169,391),(169,396),(169,494),(169,126),(169,252),(169,37),(169,315),(169,92),(169,179),(169,357),(169,13),(169,294),(169,5),(169,268),(169,320),(169,294),(169,93),(169,47),(169,437),(169,316),(169,267),(169,317),(169,169),(169,114),(169,479),(170,32),(170,171),(170,234),(170,140),(170,488),(170,314),(170,272),(170,31),(170,399),(170,463),(170,385),(170,104),(170,394),(170,161),(170,149),(170,399),(170,134),(170,342),(170,53),(171,476),(171,407),(174,124),(175,398),(175,9),(175,64),(175,41),(175,148),(175,444),(175,106),(175,409),(175,462),(175,361),(175,20),(175,376),(175,387),(175,297),(175,434),(175,144),(175,221),(175,14),(176,430),(176,117),(176,471),(176,30),(176,155),(176,444),(176,442),(176,442),(176,423),(176,233),(176,332),(176,92),(176,260),(176,63),(176,364),(176,459),(176,162),(176,435),(176,169),(176,18),(176,78),(176,31),(176,459),(176,481),(176,29),(176,286),(176,282),(176,242),(177,322),(177,211),(179,285),(179,230),(179,463),(179,347),(179,328),(179,402),(179,360),(179,53),(179,391),(179,160),(179,56),(179,262),(179,297),(179,97),(179,435),(179,286),(179,255),(179,88),(179,100),(179,143),(179,355),(179,159),(179,80),(181,40),(182,61),(182,412),(183,71),(183,180),(183,4),(183,187),(183,282),(184,93),(184,347),(184,153),(184,361),(185,478),(185,227),(185,206),(185,484),(185,368),(185,290),(185,335),(185,449),(185,232),(185,29),(185,140),(185,210),(185,322),(185,200),(185,102),(185,277),(185,311),(185,102),(185,435),(185,465),(186,317),(187,324),(187,262),(187,345),(187,193),(187,199),(187,479),(187,54),(187,340),(187,171),(187,226),(187,72),(187,287),(187,205),(187,30),(187,6),(187,400),(187,67),(187,475),(187,378),(187,368),(187,323),(187,76),(187,126),(187,175),(187,35),(187,123),(187,375),(188,439),(188,69),(188,316),(188,427),(188,119),(188,410),(188,185),(188,200),(188,331),(188,445),(188,428),(188,225),(188,488),(188,413),(188,288),(188,244),(188,273),(188,436),(188,249),(188,302),(188,353),(188,177),(188,429),(188,172),(188,90),(189,243),(191,10),(191,183),(191,490),(191,139),(191,424),(191,49),(191,369),(191,474),(191,69),(193,360),(193,179),(193,101),(193,239),(193,70),(193,431),(193,112),(194,238),(194,397),(194,130),(195,345),(195,10),(195,144),(195,105),(195,90),(195,481),(195,298),(195,406),(195,303),(195,490),(195,316),(195,407),(195,185),(195,437),(195,295),(195,284),(195,332),(195,425),(195,391),(195,120),(195,222),(195,84),(195,363),(195,133),(195,455),(195,258),(195,220),(195,287),(195,132),(198,378),(198,226),(200,134),(200,408),(200,464),(200,333),(200,289),(200,44),(200,62),(200,334),(200,332),(200,16),(200,98),(200,315),(200,148),(200,251),(200,182),(200,291),(200,455),(200,306),(200,406),(200,274),(200,211),(200,280),(200,461),(200,117),(200,176),(200,420),(200,172),(200,461),(200,207),(201,128),(201,377),(201,117),(201,95),(201,463),(204,329),(204,126),(204,395),(204,398),(204,94),(204,360),(204,309),(204,43),(204,444),(204,156),(204,162),(204,364),(207,487),(207,180),(207,302),(207,233),(207,288),(207,449),(207,199),(207,29),(207,398),(207,487),(207,387),(207,393),(207,48),(207,495),(207,93),(207,486),(207,11),(207,486),(207,32),(207,26),(207,376),(207,466),(207,353),(207,56),(208,101),(208,428),(208,134),(208,369),(208,266),(208,229),(208,260),(208,306),(208,386),(208,332),(208,231),(208,356),(208,312),(208,82),(208,126),(208,318),(208,174),(208,449),(208,459),(208,399),(208,223),(208,486),(208,40),(208,43),(208,157),(208,75),(208,100),(208,323),(208,260),(209,171),(209,221),(209,283),(209,284),(209,388),(209,85),(209,464),(209,352),(209,468),(209,304),(209,492),(209,217),(209,307),(209,213),(209,412),(209,228),(209,403),(209,161),(209,266),(209,436),(209,167),(209,239),(209,67),(209,109),(209,424),(209,361),(209,238),(209,132),(211,329),(211,144),(211,172),(211,449),(211,213),(211,417),(211,376),(211,95),(211,101),(211,361),(211,217),(211,18),(211,410),(211,267),(211,448),(211,10),(211,484),(211,0),(211,54),(211,472),(211,467),(211,184),(211,235),(211,172),(211,52),(211,28),(211,221),(211,17),(211,369),(213,95),(213,138),(213,275),(213,268),(213,316),(213,371),(213,96),(213,105),(213,306),(213,58),(213,262),(213,370),(213,165),(213,224),(213,451),(213,345),(213,22),(213,311),(215,209),(215,118),(215,411),(215,295),(215,336),(215,462),(216,18),(216,440),(216,122),(216,488),(216,400),(216,184),(216,193),(216,477),(216,325),(216,141),(216,174),(216,498),(216,427),(216,52),(217,239),(217,336),(217,475),(217,203),(217,79),(217,228),(217,384),(217,426),(217,388),(217,171),(217,89),(217,375),(217,27),(217,231),(217,149),(217,56),(217,174),(217,6),(217,431),(217,156),(217,409),(217,7),(218,338),(218,22),(218,90),(218,448),(218,446),(218,62),(218,244),(218,42),(218,379),(218,89),(218,116),(218,408),(218,401),(218,75),(218,438),(218,222),(218,318),(218,281),(218,386),(218,366),(218,268),(218,84),(218,64),(218,26),(218,81),(218,110),(219,156),(219,75),(219,190),(219,313),(219,355),(219,168),(219,90),(219,422),(219,308),(219,399),(219,99),(219,374),(219,405),(219,241),(219,200),(219,174),(219,487),(219,99),(219,72),(219,469),(219,449),(219,367),(219,307),(219,256),(219,310),(219,425),(220,122),(220,310),(220,356),(220,285),(220,122),(220,392),(221,370),(221,316),(221,466),(221,320),(221,447),(221,292),(221,4),(221,399),(221,428),(221,343),(221,79),(221,382),(221,331),(221,377),(221,19),(221,328),(221,91),(221,238),(221,467),(221,294),(221,237),(221,179),(221,114),(221,191),(221,147),(221,251),(221,182),(221,146),(221,408),(222,275),(222,402),(222,134),(222,304),(222,339),(222,369),(222,116),(223,255),(223,255),(223,283),(223,334),(223,297),(223,310),(223,440),(223,261),(223,437),(223,239),(223,45),(223,343),(223,32),(223,332),(223,441),(223,189),(223,496),(223,395),(223,30),(223,325),(223,286),(223,105),(223,462),(223,411),(223,304),(223,16),(223,334),(225,109),(225,274),(225,351),(225,255),(226,225),(226,55),(226,417),(226,243),(226,310),(226,364),(226,19),(226,50),(226,335),(226,37),(226,18),(226,411),(226,251),(226,62),(226,243),(226,23),(226,10),(226,284),(226,330),(226,19),(226,320),(226,183),(226,339),(226,142),(226,204),(226,445),(226,149),(226,440),(227,109),(227,280),(227,375),(227,335),(227,277),(227,352),(227,219),(227,224),(227,391),(227,236),(227,340),(227,260),(227,191),(228,75),(228,442),(228,72),(228,439),(228,37),(228,115),(228,475),(228,401),(228,113),(228,43),(228,274),(228,357),(228,35),(231,133),(231,149),(231,347),(231,104),(231,411),(231,415),(231,278),(231,337),(231,403),(231,442),(231,437),(231,475),(231,429),(231,19),(231,480),(231,323),(231,395),(233,134),(233,93),(233,223),(233,28),(233,253),(234,90),(234,134),(234,209),(234,50),(234,87),(234,121),(234,340),(234,209),(234,456),(234,83),(234,483),(234,98),(234,461),(236,312),(236,222),(236,46),(236,392),(236,90),(236,37),(236,47),(236,128),(236,134),(236,414),(236,479),(236,206),(236,420),(236,6),(236,22),(236,325),(236,116),(236,218),(236,257),(236,126),(236,498),(236,363),(236,440),(237,187),(237,398),(237,363),(237,456),(237,163),(237,153),(237,411),(237,91),(237,230),(237,142),(237,336),(237,138),(237,356),(237,376),(237,400),(237,224),(237,394),(237,300),(237,496),(237,158),(237,83),(237,25),(237,198),(237,210),(237,161),(237,292),(237,67),(237,232),(237,213),(238,25),(238,246),(238,459),(238,270),(238,76),(238,201),(238,35),(238,114),(238,34),(238,253),(238,54),(238,471),(238,444),(238,214),(238,162),(238,471),(238,282),(238,411),(238,17),(238,9),(238,328),(238,104),(238,410),(238,216),(238,456),(238,367),(238,157),(239,243),(239,305),(239,81),(239,302),(239,354),(239,347),(239,20),(239,412),(239,22),(239,218),(239,312),(239,183),(239,235),(239,220),(239,315),(239,340),(239,45),(239,203),(239,75),(239,450),(239,274),(239,296),(239,475),(239,72),(239,135),(239,202),(239,310),(239,15),(240,284),(240,18),(240,137),(241,39),(241,284),(241,316),(241,269),(241,342),(241,333),(241,262),(241,497),(241,66),(241,255),(241,456),(241,164),(241,44),(241,138),(241,460),(241,201),(241,132),(241,360),(241,281),(241,377),(241,420),(241,6),(241,156),(241,382),(241,267),(241,254),(241,378),(241,160),(241,380),(242,456),(242,287),(242,63),(244,15),(244,420),(244,50),(244,155),(244,134),(244,419),(246,422),(246,497),(246,383),(246,137),(246,268),(246,201),(246,139),(246,499),(246,313),(246,295),(246,244),(246,328),(248,137),(248,446),(248,284),(248,359),(248,383),(248,410),(248,2),(248,457),(248,345),(248,122),(248,130),(248,238),(248,359),(248,99),(248,255),(248,188),(248,104),(249,420),(250,211),(250,343),(250,137),(250,152),(250,384),(250,272),(250,322),(250,92),(250,91),(250,415),(250,371),(250,376),(250,311),(250,99),(250,384),(250,302),(250,253),(250,472),(250,64),(250,24),(250,208),(250,86),(250,440),(250,287),(250,200),(250,295),(250,482),(250,453),(250,112),(251,163),(251,493),(251,340),(251,77),(251,41),(251,6),(251,496),(251,28),(251,166),(251,247),(251,88),(251,239),(251,209),(251,47),(251,3),(251,154),(251,349),(251,214),(251,41),(251,15),(251,498),(251,58),(251,393),(251,161),(251,410),(251,290),(251,98),(251,141),(251,357),(253,456),(253,187),(253,397),(253,228),(253,277),(253,187),(253,429),(253,228),(253,436),(253,135),(253,218),(253,24),(255,497),(255,393),(255,454),(255,343),(255,309),(255,152),(255,97),(255,443),(255,374),(255,150),(255,352),(255,91),(255,383),(255,365),(255,467),(255,224),(255,458),(255,29),(255,461),(255,426),(255,267),(255,437),(255,41),(255,461),(255,476),(255,190),(255,445),(255,257),(255,154),(257,252),(257,220),(257,87),(257,102),(257,339),(257,248),(257,485),(257,162),(257,112),(257,326),(257,453),(257,209),(257,430),(257,335),(257,424),(257,265),(257,119),(257,23),(257,223),(257,285),(257,237),(257,34),(257,433),(257,379),(257,452),(257,463),(257,195),(257,169),(257,11),(258,7),(258,141),(258,17),(258,46),(258,240),(258,87),(258,446),(258,110),(258,422),(258,425),(258,195),(258,91),(258,230),(258,457),(258,177),(258,43),(258,497),(258,151),(258,421),(258,305),(258,3),(258,3),(258,339),(258,188),(258,62),(258,280),(258,51),(259,192),(259,343),(259,245),(259,325),(259,308),(259,205),(259,15),(259,89),(259,86),(259,51),(259,285),(259,329),(259,107),(259,171),(259,461),(259,447),(259,314),(259,346),(259,147),(259,64),(259,420),(259,309),(259,13),(259,260),(259,147),(259,424),(260,296),(262,369),(262,429),(262,38),(262,114),(262,93),(262,31),(262,492),(262,292),(262,330),(262,379),(262,111),(262,451),(262,142),(262,351),(262,300),(262,234),(262,313),(262,302),(262,343),(262,446),(263,430),(263,319),(264,197),(264,224),(264,411),(264,287),(264,192),(264,369),(264,156),(264,55),(264,235),(264,450),(264,356),(264,408),(264,107),(264,337),(264,324),(264,217),(264,419),(264,430),(264,129),(264,360),(265,264),(265,22),(265,400),(265,31),(265,232),(265,391),(265,148),(265,392),(265,499),(265,410),(265,140),(265,132),(265,49),(265,19),(265,232),(265,16),(265,315),(265,72),(268,232),(268,131),(268,371),(268,141),(268,119),(268,4),(268,10),(271,398),(271,150),(271,268),(271,477),(271,470),(271,264),(271,47),(271,127),(271,434),(271,84),(271,166),(271,387),(271,15),(271,51),(271,435),(271,286),(272,244),(273,417),(273,450),(273,66),(273,1),(273,447),(273,347),(273,112),(273,60),(273,5),(273,395),(273,330),(273,307),(273,405),(273,228),(273,402),(273,18),(273,302),(273,447),(273,160),(273,213),(273,498),(273,235),(273,118),(273,106),(273,355),(273,284),(273,31),(273,161),(273,117),(274,368),(274,493),(274,498),(274,473),(276,391),(276,198),(276,213),(276,268),(276,137),(276,349),(276,447),(276,31),(276,1),(277,265),(277,312),(277,403),(277,89),(277,466),(277,367),(277,442),(277,245),(277,101),(277,446),(277,337),(277,80),(277,96),(277,308),(277,301),(277,122),(277,249),(277,151),(277,103),(277,379),(277,222),(277,114),(277,51),(277,335),(277,131),(278,468),(278,440),(278,86),(278,331),(278,131),(278,323),(278,352),(278,127),(278,105),(278,360),(283,382),(283,99),(284,59),(284,189),(284,365),(284,224),(284,134),(284,410),(284,348),(284,489),(284,73),(284,160),(284,96),(284,447),(284,373),(284,248),(284,422),(284,472),(284,163),(284,325),(284,493),(284,266),(284,372),(284,309),(284,296),(284,51),(284,368),(284,218),(286,434),(286,227),(286,236),(286,374),(286,142),(286,197),(286,344),(286,410),(286,148),(286,200),(286,62),(286,309),(286,119),(286,184),(286,369),(286,259),(286,262),(286,444),(286,346),(286,308),(286,241),(286,322),(286,220),(286,23),(286,335),(286,321),(286,118),(286,459),(286,324),(288,276),(288,121),(288,180),(288,10),(288,416),(288,253),(288,198),(288,98),(288,491),(288,71),(288,67),(288,291),(288,32),(288,330),(288,108),(289,271),(289,97),(289,97),(289,182),(289,336),(289,181),(289,204),(289,174),(289,422),(289,477),(289,35),(289,344),(289,17),(289,249),(289,453),(289,54),(289,336),(289,315),(289,455),(290,307),(292,162),(292,451),(292,470),(292,217),(292,99),(292,110),(292,391),(292,154),(292,23),(292,217),(292,219),(292,28),(292,9),(292,316),(292,229),(292,209),(292,393),(292,244),(292,155),(292,340),(292,159),(292,116),(292,489),(292,341),(292,342),(293,486),(293,33),(293,293),(293,160),(293,186),(293,77),(293,347),(293,464),(293,420),(293,494),(294,143),(294,96),(295,493),(295,12),(295,232),(295,17),(295,186),(295,355),(295,292),(295,356),(295,429),(295,51),(295,457),(295,303),(295,134),(295,382),(295,192),(295,40),(295,43),(295,59),(295,312),(295,286),(295,21),(295,498),(295,92),(295,494),(295,373),(295,329),(295,76),(295,34),(295,158),(296,116),(296,2),(296,132),(296,422),(296,142),(296,67),(296,369),(296,283),(296,156),(296,275),(296,326),(296,41),(297,135),(297,111),(297,144),(297,118),(297,216),(297,309),(297,427),(297,98),(297,215),(297,410),(297,27),(297,190),(297,453),(297,258),(297,70),(297,337),(297,361),(297,480),(297,347),(297,401),(297,50),(297,465),(297,213),(297,142),(299,145),(299,394),(299,193),(299,489),(299,206),(299,215),(299,220),(300,352),(300,189),(300,360),(300,179),(300,360),(300,2),(300,57),(300,166),(300,179),(300,145),(300,44),(300,234),(300,456),(300,354),(300,155),(300,211),(300,19),(300,451),(300,450),(300,473),(300,35),(300,312),(300,125),(300,422),(300,92),(300,206),(300,307),(300,203),(300,21),(301,442),(301,103),(301,190),(301,50),(301,457),(301,50),(301,109),(301,269),(301,19),(301,409),(301,154),(301,294),(301,251),(302,178),(303,459),(303,427),(303,194),(303,220),(303,444),(303,255),(303,272),(303,477),(303,172),(303,217),(303,399),(305,35),(305,433),(305,465),(305,76),(305,102),(305,143),(305,373),(305,130),(305,90),(305,351),(305,273),(305,368),(305,418),(305,227),(305,367),(305,25),(305,31),(305,453),(305,33),(307,398),(307,394),(307,291),(307,265),(307,131),(307,473),(307,368),(307,414),(307,372),(307,163),(307,380),(307,387),(307,381),(307,369),(307,481),(307,315),(307,249),(307,174),(307,491),(307,366),(307,103),(307,70),(307,156),(307,361),(307,69),(307,280),(308,324),(308,287),(308,212),(308,303),(308,422),(310,451),(310,383),(310,208),(310,69),(310,272),(310,430),(310,387),(310,125),(310,142),(310,435),(310,119),(310,149),(310,352),(310,121),(310,311),(310,372),(310,455),(310,419),(310,247),(310,251),(310,298),(310,259),(310,317),(310,230),(311,97),(311,156),(311,125),(311,104),(311,124),(311,31),(311,174),(311,346),(311,68),(311,277),(311,298),(311,190),(311,124),(311,315),(311,66),(311,272),(311,215),(311,70),(311,312),(311,277),(311,407),(311,299),(311,354),(311,268),(313,318),(313,283),(315,368),(315,82),(315,430),(315,352),(315,463),(315,361),(315,85),(315,312),(315,100),(315,461),(315,337),(315,64),(315,451),(315,415),(315,337),(316,404),(318,472),(318,467),(318,353),(319,201),(320,0),(320,70),(320,418),(320,350),(320,243),(320,224),(320,199),(320,280),(320,61),(320,452),(320,248),(320,494),(320,78),(320,435),(320,340),(320,264),(320,43),(320,324),(320,244),(320,468),(320,449),(320,288),(320,104),(320,490),(320,491),(320,423),(321,179),(322,76),(322,71),(322,463),(322,244),(323,179),(323,193),(323,151),(323,107),(323,274),(323,27),(323,301),(323,380),(323,224),(323,498),(323,406),(323,325),(323,483),(323,387),(323,120),(323,172),(323,424),(323,3),(323,480),(323,93),(323,391),(323,29),(323,363),(323,479),(323,114),(323,39),(323,474),(324,25),(324,320),(324,289),(324,90),(324,68),(324,448),(324,380),(324,163),(324,109),(324,14),(324,64),(328,313),(328,353),(328,11),(328,126),(328,5),(328,343),(328,380),(328,343),(328,130),(332,337),(332,211),(332,79),(332,235),(332,434),(332,62),(332,494),(332,223),(332,243),(332,474),(332,385),(332,445),(332,417),(332,407),(332,320),(332,327),(332,220),(332,357),(332,0),(332,298),(332,64),(332,414),(333,227),(333,63),(333,222),(333,231),(333,34),(333,63),(333,419),(333,135),(333,154),(333,313),(333,191),(333,81),(334,64),(334,460),(334,133),(334,165),(334,35),(334,191),(334,255),(334,122),(334,294),(334,375),(334,23),(334,262),(334,228),(334,42),(334,226),(334,253),(334,67),(334,407),(334,483),(334,403),(334,380),(334,478),(334,400),(334,32),(334,436),(334,400),(334,186),(334,321),(335,46),(335,321),(335,318),(335,412),(335,184),(335,450),(335,235),(335,191),(335,403),(335,380),(335,94),(335,112),(335,396),(335,415),(335,381),(335,314),(335,393),(335,92),(335,1),(335,302),(335,255),(335,493),(335,470),(335,218),(335,115),(335,118),(336,152),(336,266),(337,89),(337,328),(338,23),(338,186),(338,494),(338,383),(338,175),(338,245),(338,227),(338,415),(338,495),(339,170),(339,371),(339,106),(339,212),(339,146),(339,54),(339,232),(339,300),(339,428),(339,472),(339,100),(339,30),(340,214),(340,104),(340,320),(340,2),(340,451),(340,397),(340,24),(340,8),(340,192),(340,308),(340,210),(340,321),(340,260),(340,260),(340,424),(340,130),(340,175),(340,331),(340,324),(340,362),(340,310),(340,177),(340,196),(340,461),(340,276),(340,251),(340,472),(340,369),(340,252),(341,467),(343,215),(343,226),(343,161),(343,253),(343,357),(343,480),(343,387),(343,160),(343,264),(343,249),(343,336),(343,412),(343,67),(343,298),(343,167),(343,203),(343,149),(343,446),(343,98),(343,326),(343,61),(343,95),(343,154),(343,15),(343,291),(343,327),(343,439),(343,265),(344,153),(344,125),(344,127),(344,131),(344,180),(344,209),(344,81),(344,345),(344,354),(344,23),(344,122),(344,312),(345,34),(345,158),(345,279),(345,275),(345,45),(345,52),(345,381),(345,235),(345,239),(345,197),(345,449),(345,168),(345,38),(345,128),(345,21),(345,139),(345,282),(345,92),(345,212),(345,476),(345,340),(345,262),(345,272),(346,285),(346,394),(346,150),(346,244),(346,287),(346,481),(346,148),(346,366),(346,38),(346,129),(346,267),(346,183),(346,175),(346,55),(346,149),(346,89),(346,292),(346,245),(346,471),(346,359),(346,13),(346,419),(346,322),(346,427),(346,392),(346,25),(346,177),(346,451),(346,322),(348,201),(348,135),(348,74),(348,84),(348,245),(348,208),(348,0),(348,471),(348,180),(348,369),(348,353),(348,176),(348,21),(348,292),(348,99),(348,398),(348,73),(348,107),(348,272),(348,398),(348,265),(348,411),(348,272),(348,394),(348,271),(348,448),(348,5),(348,105),(349,289),(349,395),(349,402),(349,27),(349,283),(349,497),(349,420),(349,132),(349,117),(349,334),(349,282),(349,191),(349,168),(349,99),(349,467),(349,151),(350,192),(350,400),(350,449),(350,348),(350,319),(350,130),(350,108),(350,245),(350,139),(350,46),(350,443),(350,228),(350,429),(350,462),(350,295),(350,232),(350,456),(350,194),(352,36),(352,226),(352,193),(353,28),(353,487),(353,408),(353,106),(353,218),(353,176),(353,211),(353,213),(353,52),(353,377),(353,179),(353,458),(353,479),(353,198),(353,483),(353,133),(353,115),(353,422),(354,339),(355,204),(355,461),(356,126),(356,382),(356,261),(356,481),(356,258),(356,359),(356,455),(356,110),(356,238),(359,235),(359,138),(359,470),(359,106),(359,485),(359,493),(359,181),(359,397),(359,39),(359,47),(359,121),(359,136),(359,365),(359,400),(359,115),(359,21),(359,481),(359,446),(359,157),(359,420),(359,386),(359,22),(359,182),(359,458),(359,55),(359,351),(359,46),(359,202),(359,421),(362,448),(362,418),(362,395),(362,376),(362,301),(362,465),(362,57),(363,172),(363,348),(363,421),(363,259),(363,147),(363,438),(364,280),(364,257),(364,469),(364,13),(364,380),(365,92),(365,16),(365,389),(365,474),(365,446),(365,454),(365,118),(365,251),(365,230),(365,408),(365,210),(365,273),(365,208),(365,175),(365,7),(365,2),(365,42),(365,64),(365,389),(367,495),(368,175),(368,80),(368,352),(368,81),(368,28),(368,323),(368,137),(369,62),(369,120),(369,419),(369,66),(369,473),(369,43),(369,429),(369,490),(369,0),(369,290),(369,374),(369,163),(369,97),(369,441),(369,441),(369,441),(369,12),(370,73),(370,163),(370,423),(370,111),(372,79),(372,417),(372,33),(372,375),(372,320),(372,258),(372,289),(372,244),(372,357),(372,67),(372,269),(372,455),(372,383),(372,284),(372,276),(372,210),(372,141),(372,290),(372,37),(372,454),(372,379),(372,358),(372,448),(372,164),(372,187),(373,256),(373,492),(373,12),(373,149),(373,407),(373,292),(373,221),(373,207),(373,135),(373,190),(373,389),(373,249),(373,128),(374,80),(374,194),(374,327),(374,313),(374,291),(374,45),(375,104),(375,422),(375,338),(375,212),(375,221),(375,252),(375,300),(375,465),(375,153),(375,358),(375,339),(375,272),(375,488),(375,461),(375,80),(375,227),(375,254),(375,90),(375,450),(375,285),(375,50),(375,176),(375,354),(375,298),(375,312),(375,379),(376,497),(376,439),(376,130),(376,77),(376,90),(376,402),(376,164),(376,237),(376,210),(376,68),(376,381),(376,450),(376,111),(376,427),(376,158),(376,495),(376,177),(376,127),(376,110),(376,191),(378,54),(378,120),(378,37),(378,462),(378,126),(378,168),(378,90),(378,118),(378,241),(378,238),(378,459),(378,322),(378,197),(378,46),(378,79),(378,248),(378,24),(378,37),(378,88),(378,57),(378,322),(378,300),(378,404),(378,452),(378,385),(378,160),(378,328),(378,298),(378,227),(379,276),(379,372),(379,208),(379,351),(379,434),(379,227),(379,143),(379,102),(381,210),(381,456),(381,402),(381,407),(381,360),(381,226),(381,320),(381,0),(381,482),(381,148),(381,89),(381,149),(381,127),(381,72),(381,259),(381,141),(381,139),(381,44),(381,20),(381,119),(381,163),(381,89),(383,59),(383,290),(383,372),(383,322),(383,423),(383,267),(383,459),(383,419),(383,17),(383,158),(383,130),(383,258),(383,217),(383,88),(383,34),(383,76),(383,297),(383,256),(383,486),(383,341),(383,459),(383,358),(383,196),(383,221),(383,3),(383,86),(383,111),(384,59),(384,424),(384,439),(384,406),(384,317),(384,386),(384,10),(384,111),(384,404),(384,179),(384,427),(384,494),(384,365),(384,490),(384,268),(384,355),(384,428),(384,46),(384,3),(384,82),(384,189),(384,298),(384,119),(384,253),(384,458),(384,217),(384,3),(384,192),(384,4),(385,383),(385,480),(385,380),(385,331),(387,24),(387,363),(387,474),(387,116),(387,106),(387,61),(387,181),(387,79),(387,125),(387,10),(387,335),(387,266),(387,497),(387,99),(387,112),(387,488),(387,483),(387,242),(387,339),(387,410),(387,102),(387,490),(387,98),(387,146),(387,100),(387,284),(387,387),(387,310),(387,2),(389,88),(389,284),(389,123),(389,121),(390,84),(390,485),(390,475),(390,181),(390,192),(390,18),(393,119),(393,278),(393,93),(393,481),(393,423),(393,141),(393,472),(393,326),(393,78),(393,354),(393,188),(393,460),(393,225),(393,28),(393,310),(393,125),(393,262),(393,260),(393,318),(393,334),(393,328),(393,89),(393,343),(393,274),(393,93),(393,366),(393,457),(393,241),(393,377),(394,26),(394,202),(394,53),(394,33),(394,32),(394,300),(394,190),(394,208),(394,162),(394,143),(394,425),(394,121),(394,209),(394,275),(394,356),(394,133),(394,472),(394,240),(394,54),(394,16),(394,190),(394,215),(394,417),(394,410),(394,428),(394,449),(394,165),(396,149),(396,89),(396,386),(396,466),(396,232),(397,491),(397,73),(397,436),(397,103),(397,137),(397,138),(397,13),(397,475),(397,214),(397,265),(397,345),(397,409),(397,261),(397,332),(397,418),(397,456),(397,275),(397,314),(397,285),(397,304),(397,404),(397,15),(397,65),(397,268),(397,72),(397,174),(397,326),(397,356),(397,54),(400,456),(400,451),(400,291),(400,444),(400,87),(400,67),(400,221),(400,336),(400,94),(400,305),(400,209),(400,235),(400,489),(400,99),(400,159),(400,279),(400,344),(400,223),(400,332),(400,8),(400,143),(400,127),(400,229),(400,249),(400,153),(400,111),(400,195),(400,382),(400,15),(401,432),(401,111),(401,432),(401,5),(401,428),(401,275),(401,96),(401,145),(401,496),(401,405),(401,11),(404,446),(404,42),(404,55),(404,221),(404,268),(404,362),(404,27),(404,462),(404,194),(404,135),(404,42),(404,309),(404,209),(404,198),(404,91),(404,184),(404,419),(404,473),(404,437),(404,245),(404,269),(404,341),(404,293),(404,315),(404,333),(405,144),(405,210),(405,352),(405,480),(405,151),(405,214),(405,324),(405,390),(405,25),(405,75),(405,143),(405,250),(405,480),(405,256),(405,423),(405,36),(405,71),(405,421),(405,487),(405,217),(405,310),(405,129),(408,371),(408,198),(408,295),(408,158),(408,364),(408,10),(408,407),(408,422),(408,213),(408,442),(408,22),(408,89),(408,94),(408,132),(408,490),(408,353),(408,226),(408,443),(408,55),(408,132),(408,62),(408,95),(408,312),(408,203),(408,335),(409,50),(410,480),(411,17),(411,274),(411,338),(411,19),(411,437),(411,38),(411,35),(411,225),(411,50),(411,426),(411,327),(411,49),(411,299),(411,28),(411,94),(411,434),(411,474),(411,300),(411,159),(411,118),(411,333),(411,254),(411,490),(411,21),(411,110),(411,113),(411,414),(412,467),(412,143),(412,177),(412,476),(412,305),(412,71),(412,134),(412,172),(412,363),(412,322),(412,47),(412,485),(412,428),(413,394),(413,352),(413,78),(413,241),(413,267),(413,319),(413,186),(413,25),(413,254),(413,213),(413,190),(413,283),(413,123),(413,6),(413,488),(413,123),(413,68),(413,5),(413,145),(413,348),(413,115),(413,417),(413,31),(413,327),(413,277),(413,455),(413,30),(414,323),(414,138),(414,314),(414,464),(414,377),(414,98),(415,190),(415,464),(415,364),(415,124),(415,72),(415,98),(415,241),(415,101),(415,256),(415,489),(415,342),(415,493),(415,181),(415,22),(415,438),(415,165),(416,168),(416,285),(416,354),(416,190),(416,365),(416,136),(416,378),(416,388),(416,140),(416,493),(416,11),(416,319),(416,15),(416,234),(416,449),(416,385),(416,191),(416,331),(416,130),(416,172),(416,78),(416,93),(416,151),(416,94),(416,211),(416,108),(416,299),(416,213),(417,164),(417,243),(417,358),(417,204),(417,276),(417,181),(417,282),(417,20),(417,203),(417,1),(417,132),(417,90),(417,352),(417,9),(417,321),(417,194),(418,281),(418,271),(418,97),(418,350),(418,103),(418,113),(418,497),(418,201),(418,443),(418,474),(418,88),(418,8),(418,182),(418,115),(418,251),(418,105),(418,427),(418,127),(418,348),(418,54),(418,92),(418,435),(418,492),(418,8),(418,102),(418,14),(418,101),(418,230),(419,26),(420,355),(420,321),(420,408),(420,326),(420,336),(420,464),(420,411),(420,465),(420,220),(420,415),(420,52),(420,359),(420,19),(420,55),(420,106),(420,172),(420,443),(420,40),(420,373),(420,232),(420,132),(420,165),(420,382),(420,148),(420,60),(420,488),(420,52),(420,255),(420,482),(422,119),(422,180),(422,206),(422,176),(422,482),(422,395),(422,130),(422,66),(422,316),(422,486),(422,331),(422,282),(422,402),(422,74),(423,221),(423,81),(423,298),(423,82),(423,464),(423,498),(423,366),(423,419),(423,117),(423,131),(423,198),(423,365),(423,79),(423,172),(423,117),(423,122),(423,486),(424,5),(424,349),(424,264),(424,472),(424,468),(424,254),(424,114),(424,302),(424,484),(424,181),(424,80),(425,62),(425,353),(425,173),(425,101),(427,71),(427,291),(427,311),(427,149),(427,213),(427,398),(427,419),(428,432),(428,196),(428,32),(428,179),(428,254),(428,489),(428,13),(428,401),(428,198),(428,466),(428,458),(428,471),(428,255),(428,308),(428,86),(428,257),(429,184),(430,159),(430,344),(430,363),(430,165),(430,188),(430,53),(430,493),(430,180),(430,403),(430,320),(432,171),(432,346),(433,413),(433,291),(433,297),(433,225),(433,374),(433,338),(433,145),(433,224),(433,95),(434,287),(434,349),(434,306),(435,232),(435,164),(435,169),(435,304),(435,156),(435,144),(435,400),(435,68),(436,456),(436,177),(436,325),(436,104),(436,323),(436,317),(436,169),(436,327),(436,322),(436,74),(436,245),(436,209),(436,244),(436,47),(436,382),(436,255),(436,41),(436,283),(436,157),(436,113),(436,85),(436,322),(436,307),(436,26),(436,306),(436,411),(436,10),(436,65),(436,334),(437,185),(437,424),(437,479),(437,428),(437,155),(437,373),(437,42),(437,170),(437,414),(437,246),(437,205),(437,457),(437,82),(437,242),(437,117),(437,51),(437,42),(437,284),(437,65),(437,195),(437,146),(437,59),(437,117),(437,19),(437,300),(437,11),(437,211),(437,401),(438,434),(438,497),(438,426),(438,371),(439,275),(439,287),(439,97),(439,152),(439,73),(439,104),(439,119),(439,398),(439,274),(439,59),(439,329),(440,166),(440,423),(440,0),(440,252),(440,233),(440,338),(440,327),(440,249),(440,308),(440,297),(440,354),(440,450),(440,355),(440,92),(440,11),(440,32),(440,262),(440,461),(440,163),(440,273),(440,187),(440,241),(440,329),(440,435),(440,220),(440,230),(441,290),(441,26),(441,39),(441,170),(441,142),(441,497),(441,151),(441,98),(441,383),(441,76),(441,369),(441,268),(441,311),(441,372),(441,393),(441,102),(441,307),(441,305),(441,100),(441,469),(441,409),(441,315),(441,457),(441,60),(441,412),(441,392),(441,186),(441,395),(441,382),(442,244),(442,294),(442,390),(442,241),(442,240),(442,324),(442,452),(442,244),(442,292),(442,187),(442,75),(442,140),(442,388),(442,196),(442,127),(442,1),(442,479),(442,377),(442,327),(442,370),(442,292),(442,374),(443,214),(443,286),(443,263),(445,307),(445,239),(445,210),(445,36),(445,254),(445,1),(445,105),(445,319),(445,391),(445,361),(446,284),(446,64),(446,73),(446,163),(446,279),(446,472),(446,320),(446,417),(446,257),(446,268),(446,444),(446,468),(446,429),(446,161),(446,338),(448,15),(448,144),(448,189),(448,290),(448,322),(448,110),(448,15),(448,227),(448,235),(448,415),(448,226),(448,415),(448,230),(448,217),(448,197),(448,155),(448,128),(448,317),(448,200),(448,71),(448,193),(448,145),(448,374),(448,492),(449,400),(449,422),(449,193),(450,315),(450,425),(450,447),(450,143),(450,193),(450,235),(450,311),(450,341),(450,116),(450,291),(450,232),(450,393),(450,388),(450,93),(450,139),(450,303),(450,166),(450,296),(450,442),(450,333),(450,145),(450,39),(450,95),(450,373),(450,61),(450,119),(450,49),(450,327),(450,488),(452,430),(452,9),(452,363),(452,396),(452,415),(452,195),(452,312),(452,159),(452,81),(452,153),(452,381),(452,231),(452,157),(454,58),(454,185),(454,472),(454,429),(454,380),(454,166),(454,200),(454,433),(454,332),(454,325),(454,437),(454,219),(454,478),(454,487),(454,70),(454,40),(454,448),(454,72),(454,100),(454,132),(454,429),(454,469),(454,381),(454,352),(454,109),(454,193),(454,474),(454,124),(454,189),(455,124),(456,257),(456,371),(456,5),(456,341),(456,405),(456,151),(456,408),(456,426),(456,436),(456,334),(456,475),(456,22),(456,38),(456,480),(456,34),(456,330),(456,429),(456,230),(456,47),(456,492),(456,129),(456,55),(456,313),(456,144),(456,396),(456,456),(456,143),(458,345),(458,184),(458,489),(458,203),(458,103),(458,46),(458,149),(458,439),(458,464),(458,193),(458,274),(458,121),(458,117),(458,67),(458,50),(458,214),(458,17),(458,344),(458,405),(458,143),(458,212),(458,212),(458,172),(458,480),(458,93),(459,118),(459,381),(459,72),(459,115),(459,96),(459,19),(459,242),(459,332),(459,414),(459,173),(459,357),(459,35),(459,10),(459,121),(459,489),(459,297),(459,157),(459,417),(459,26),(459,427),(459,216),(459,23),(459,387),(459,25),(459,357),(459,6),(459,12),(459,55),(459,267),(461,204),(461,35),(461,216),(461,333),(461,217),(461,432),(461,421),(461,186),(461,320),(461,297),(461,477),(461,262),(461,29),(461,299),(461,256),(461,93),(461,448),(461,407),(461,53),(461,233),(461,219),(461,96),(462,192),(462,307),(462,169),(462,404),(462,286),(462,151),(462,252),(462,43),(462,203),(462,80),(462,338),(462,246),(462,396),(462,247),(462,253),(462,295),(462,206),(462,5),(463,251),(463,188),(463,96),(463,33),(463,231),(463,346),(463,143),(465,154),(465,448),(465,22),(465,445),(465,97),(465,179),(465,412),(465,473),(465,122),(465,284),(465,384),(465,352),(465,80),(465,398),(465,405),(465,408),(465,411),(465,468),(465,170),(465,84),(465,41),(465,330),(465,280),(467,409),(467,301),(467,140),(467,450),(467,272),(467,312),(467,318),(467,360),(467,365),(467,236),(467,262),(467,347),(467,121),(467,35),(467,323),(467,358),(467,354),(467,217),(467,72),(467,441),(467,105),(467,473),(467,374),(467,274),(467,235),(467,139),(467,389),(467,138),(467,106),(470,293),(472,123),(472,353),(472,42),(472,434),(472,221),(472,131),(472,363),(472,139),(473,243),(473,1),(473,424),(473,206),(473,366),(473,11),(473,7),(473,430),(473,74),(473,451),(473,193),(473,234),(473,3),(473,425),(473,480),(473,292),(473,331),(473,110),(473,190),(473,236),(473,459),(473,226),(474,191),(474,118),(474,4),(479,274),(479,93),(479,16),(479,442),(479,413),(479,235),(479,249),(479,53),(479,122),(479,82),(479,412),(479,165),(479,106),(479,476),(479,263),(479,448),(480,295),(480,497),(480,354),(480,237),(480,196),(480,295),(480,80),(480,127),(480,207),(480,68),(480,387),(480,409),(480,169),(480,265),(480,207),(480,273),(480,379),(480,112),(480,248),(481,168),(481,49),(481,164),(481,384),(481,26),(481,477),(481,226),(481,361),(481,133),(481,462),(481,265),(481,15),(481,235),(481,351),(481,1),(481,104),(481,252),(481,89),(481,87),(481,303),(481,205),(481,397),(481,227),(481,93),(481,391),(481,317),(481,436),(481,178),(481,363),(482,355),(482,440),(482,363),(482,190),(482,149),(482,78),(482,106),(482,366),(482,59),(482,308),(482,395),(482,187),(482,488),(482,158),(482,276),(482,153),(482,392),(482,305),(482,166),(482,42),(482,378),(483,294),(483,410),(483,117),(483,88),(483,4),(483,473),(483,28),(483,297),(483,164),(483,158),(483,49),(483,141),(483,282),(483,20),(483,71),(483,327),(483,248),(483,354),(483,214),(483,155),(483,178),(483,194),(484,279),(484,410),(484,432),(484,203),(484,51),(484,300),(484,266),(484,343),(485,252),(485,294),(485,204),(485,220),(485,226),(485,308),(485,337),(485,256),(485,230),(485,317),(485,437),(485,145),(485,251),(485,492),(485,466),(485,128),(485,494),(485,388),(485,465),(485,167),(485,71),(485,242),(485,115),(485,487),(485,275),(485,264),(485,264),(486,309),(486,498),(486,414),(486,433),(486,60),(486,286),(486,332),(486,449),(486,111),(486,199),(486,375),(486,391),(486,227),(486,44),(486,187),(486,115),(486,125),(486,75),(486,164),(486,34),(486,136),(486,104),(486,161),(486,196),(486,410),(486,457),(486,38),(489,104),(489,59),(489,319),(489,39),(489,401),(489,453),(489,352),(489,499),(489,359),(489,172),(489,28),(489,492),(489,132),(489,402),(489,91),(489,242),(489,196),(489,289),(489,280),(489,294),(489,443),(489,172),(489,310),(489,17),(489,322),(489,316),(489,481),(489,371),(489,373),(490,140),(490,222),(490,56),(490,167),(490,47),(492,119),(492,487),(492,21),(492,348),(492,260),(492,400),(492,495),(492,180),(492,36),(492,2),(492,357),(492,441),(492,483),(492,177),(492,140),(492,269),(492,335),(492,332),(492,104),(492,233),(492,320),(492,109),(492,414),(492,483),(492,315),(492,166),(492,393),(492,165),(493,118),(493,261),(494,407),(494,456),(494,57),(494,369),(494,81),(494,459),(494,20),(494,303),(494,29),(494,15),(494,380),(494,258),(494,149),(494,245),(494,119),(494,376),(494,410),(494,9),(494,52),(494,277),(494,336),(494,380),(495,215),(495,134),(497,155),(497,216),(497,328),(497,398),(497,420),(497,177),(497,401),(497,345),(497,178),(497,256),(497,247),(497,250),(497,400),(497,71),(497,113),(497,185),(497,305),(497,239),(497,339),(497,168),(497,435),(497,387),(497,176),(497,419),(497,262),(497,287),(497,252),(497,83),(497,169),(498,470),(498,476),(498,200),(498,404),(499,155),(499,71),(499,61),(499,490),(499,116),(501,146),(501,172),(502,32),(502,429),(505,21),(505,200),(505,58),(506,215),(506,442),(506,496),(506,485),(506,295),(506,78),(506,97),(506,53),(506,431),(506,387),(506,256),(506,287),(506,445),(506,390),(506,206),(506,312),(506,390),(506,323),(506,246),(506,139),(506,148),(507,27),(507,213),(507,375),(507,57),(507,401),(507,195),(507,412),(507,33),(507,392),(507,87),(507,296),(507,262),(507,356),(507,67),(507,322),(507,489),(507,224),(507,442),(507,192),(507,131),(507,197),(507,459),(509,205),(509,349),(509,98),(509,419),(509,189),(509,6),(509,149),(509,45),(509,411),(509,359),(509,444),(509,232),(509,99),(509,337),(509,364),(509,431),(509,47),(509,461),(509,110),(509,308),(509,94),(509,50),(509,148),(509,402),(509,201),(509,116),(509,308),(509,380),(511,493),(511,23),(511,86),(511,264),(511,369),(511,403),(511,224),(511,217),(511,499),(511,226),(511,211),(511,195),(511,429),(514,209),(514,40),(514,123),(514,104),(514,314),(514,77),(514,148),(514,254),(514,244),(514,443),(514,471),(514,186),(514,287),(514,95),(514,267),(514,0),(514,336),(514,315),(514,33),(514,32),(514,7),(514,414),(514,84),(514,326),(514,54),(514,362),(514,87),(514,220),(514,297),(516,195),(516,328),(516,437),(516,59),(516,396),(516,464),(516,90),(516,190),(516,321),(516,9),(516,344),(516,280),(516,307),(516,23),(516,485),(516,244),(516,77),(516,440),(516,41),(516,395),(516,177),(516,251),(516,94),(516,496),(516,160),(516,1),(516,122),(516,16),(516,32),(518,302),(518,312),(518,287),(518,63),(518,81),(518,31),(518,179),(518,241),(518,168),(518,111),(518,448),(518,443),(518,88),(518,98),(518,270),(518,438),(518,218),(518,220),(518,309),(518,249),(518,390),(518,140),(518,17),(518,496),(518,433),(518,231),(519,400),(519,124),(519,409),(519,418),(519,256),(519,308),(519,126),(519,309),(519,281),(519,486),(519,86),(519,275),(519,313),(519,96),(519,196),(519,466),(519,375),(519,132),(519,455),(519,406),(519,182),(520,133),(521,64),(521,279),(521,105),(521,249),(521,266),(521,248),(521,385),(521,192),(521,196),(521,294),(521,415),(521,267),(521,143),(521,497),(521,269),(522,307),(522,11),(522,170),(522,133),(522,401),(522,333),(522,228),(522,55),(522,204),(522,389),(522,9),(522,245),(522,405),(522,249),(522,69),(522,362),(522,154),(522,245),(522,30),(522,116),(522,367),(522,421),(522,441),(525,266),(525,124),(525,21),(525,4),(525,279),(525,222),(525,280),(525,42),(525,396),(525,45),(525,488),(525,115),(525,406),(525,122),(525,242),(525,192),(525,471),(525,130),(525,104),(525,67),(525,497),(525,138),(525,450),(525,243),(525,133),(526,78),(526,178),(526,61),(526,96),(526,342),(526,191),(526,224),(526,393),(526,292),(526,413),(526,196),(526,497),(526,193),(526,409),(526,440),(526,288),(526,434),(526,69),(526,316),(526,185),(526,309),(527,125),(527,76),(527,397),(527,275),(527,187),(527,31),(527,364),(527,58),(527,81),(527,221),(527,31),(527,220),(527,109),(527,319),(527,34),(527,273),(527,250),(527,440),(527,331),(527,213),(527,209),(527,288),(527,464),(527,24),(527,428),(527,176),(527,124),(527,482),(527,370),(528,183),(528,256),(528,208),(528,193),(528,67),(528,467),(528,476),(528,150),(528,268),(528,326),(528,133),(528,171),(528,29),(528,337),(528,247),(528,10),(528,390),(528,270),(528,173),(528,130),(528,479),(528,444),(528,97),(528,304),(528,374),(528,101),(528,405),(528,341),(531,396),(531,488),(531,75),(531,440),(531,167),(531,63),(532,454),(532,171),(532,463),(532,270),(532,498),(532,48),(532,399),(533,13),(533,389),(533,136),(533,77),(533,142),(533,41),(533,130),(534,220),(534,459),(534,143),(534,215),(534,124),(534,492),(534,380),(534,413),(534,168),(534,406),(534,271),(534,329),(534,441),(534,13),(534,234),(534,393),(534,322),(534,118),(534,411),(534,398),(534,133),(534,18),(534,131),(534,92),(534,144),(534,403),(534,486),(534,269),(534,72),(535,164),(535,234),(536,82),(536,369),(536,452),(536,433),(536,405),(536,365),(536,94),(536,456),(536,243),(536,21),(536,82),(536,291),(536,381),(536,25),(536,370),(536,177),(536,338),(536,459),(536,414),(536,258),(536,94),(536,38),(537,376),(537,130),(537,219),(537,131),(537,378),(537,323),(537,475),(537,451),(537,318),(537,465),(537,110),(537,393),(539,331),(539,294),(539,147),(539,67),(539,375),(540,484),(540,154),(541,3),(541,470),(541,420),(542,88),(542,321),(542,313),(542,215),(542,214),(542,486),(542,448),(542,82),(542,473),(542,218),(542,125),(542,344),(542,474),(542,38),(542,473),(542,328),(542,191),(542,480),(542,471),(544,383),(544,467),(544,265),(544,462),(546,228),(548,313),(548,73),(548,350),(548,168),(548,262),(550,317),(550,209),(550,241),(553,412),(553,91),(554,480),(554,468),(554,479),(554,376),(554,93),(554,367),(554,485),(554,145),(554,366),(554,252),(554,491),(554,420),(554,178),(554,400),(554,346),(554,409),(554,394),(554,359),(554,331),(554,170),(554,210),(554,356),(554,90),(556,62),(556,219),(556,415),(556,330),(556,493),(556,316),(556,483),(556,382),(556,415),(556,372),(556,491),(556,490),(556,324),(556,244),(556,483),(556,302),(556,306),(556,352),(556,302),(557,410),(557,290),(557,281),(557,232),(557,159),(557,131),(557,55),(557,95),(557,440),(557,126),(557,414),(557,468),(557,446),(557,492),(557,233),(557,394),(557,484),(557,296),(557,489),(557,421),(557,73),(557,304),(557,82),(557,82),(557,206),(557,251),(557,345),(557,347),(557,264),(560,153),(560,499),(560,173),(560,294),(560,259),(560,42),(561,110),(561,421),(561,65),(561,252),(561,261),(561,485),(561,26),(561,114),(561,176),(561,126),(561,415),(561,136),(561,92),(561,325),(561,452),(561,437),(561,84),(561,42),(561,151),(561,283),(561,414),(561,239),(562,11),(562,387),(562,203),(562,436),(562,259),(562,357),(562,248),(562,486),(562,81),(562,146),(562,484),(562,359),(563,8),(563,178),(565,439),(565,355),(565,311),(565,14),(565,366),(565,117),(565,2),(565,317),(565,87),(565,47),(565,320),(565,252),(565,189),(565,214),(565,362),(565,439),(565,86),(565,309),(565,327),(565,460),(565,362),(565,260),(565,417),(566,339),(566,250),(566,402),(566,485),(566,414),(566,461),(566,341),(566,176),(566,268),(566,498),(566,95),(566,167),(566,489),(566,420),(566,496),(566,469),(566,380),(566,10),(566,316),(566,290),(566,461),(566,71),(566,185),(567,276),(567,355),(567,432),(567,124),(567,462),(567,217),(567,433),(567,174),(567,466),(567,212),(567,192),(567,19),(567,414),(567,309),(567,249),(567,210),(567,192),(567,71),(567,488),(568,101),(568,320),(568,26),(568,480),(568,244),(568,336),(568,69),(568,293),(568,76),(568,317),(568,225),(568,405),(568,478),(568,49),(568,369),(568,373),(568,30),(569,355),(569,340),(569,451),(569,453),(569,371),(569,422),(569,423),(569,143),(569,423),(569,266),(569,222),(569,416),(569,143),(569,450),(569,426),(569,487),(569,8),(569,200),(572,159),(573,245),(573,484),(573,353),(573,131),(573,78),(573,244),(573,374),(573,348),(573,78),(573,16),(573,101),(573,220),(573,396),(573,376),(573,391),(573,89),(573,304),(573,489),(573,288),(573,51),(573,435),(573,399),(573,273),(573,290),(573,262),(573,297),(573,1),(574,160),(574,323),(574,45),(574,199),(574,286),(574,86),(574,371),(575,485),(575,345),(575,288),(575,252),(575,0),(575,12),(575,169),(575,159),(575,339),(575,463),(575,66),(575,303),(576,341),(576,367),(576,176),(576,178),(576,220),(576,213),(576,202),(576,132),(576,389),(576,113),(576,499),(576,171),(577,480),(577,197),(577,298),(577,195),(577,478),(577,216),(577,19),(577,134),(577,137),(577,479),(577,404),(577,167),(577,146),(577,429),(577,20),(577,351),(577,167),(577,228),(577,401),(577,475),(577,177),(577,176),(577,13),(577,59),(577,282),(577,269),(577,326),(577,464),(578,363),(578,269),(578,295),(578,91),(578,378),(578,48),(578,87),(578,173),(578,371),(578,201),(578,298),(578,349),(578,448),(578,392),(578,467),(578,446),(578,384),(578,468),(578,230),(578,372),(578,77),(578,315),(578,105),(578,426),(579,149),(580,313),(580,172),(581,13),(581,92),(581,363),(581,151),(581,289),(581,193),(581,463),(581,134),(581,117),(581,238),(581,138),(581,364),(581,111),(581,226),(581,253),(581,365),(581,193),(581,430),(581,337),(581,387),(581,396),(581,179),(581,409),(581,419),(581,303),(581,82),(582,260),(583,231),(583,470),(583,277),(583,303),(583,384),(583,207),(583,221),(583,140),(583,489),(583,309),(583,88),(583,346),(583,446),(583,440),(583,412),(583,346),(583,84),(583,87),(583,278),(583,31),(583,491),(583,437),(583,322),(583,245),(583,7),(583,180),(583,57),(584,112),(584,146),(586,132),(586,478),(586,349),(586,436),(586,77),(586,55),(587,349),(587,129),(587,313),(587,430),(587,56),(587,393),(587,262),(587,54),(587,1),(587,318),(587,384),(587,402),(587,386),(587,346),(587,397),(587,361),(587,400),(587,276),(587,307),(587,199),(587,497),(587,489),(587,425),(587,282),(587,164),(587,393),(587,462),(587,460),(587,235),(588,141),(589,135),(589,383),(589,443),(589,407),(589,428),(589,243),(589,399),(589,250),(589,73),(589,145),(589,385),(589,335),(589,164),(590,321),(590,115),(590,193),(590,235),(590,490),(590,374),(590,38),(590,215),(590,345),(590,248),(590,169),(590,103),(590,410),(590,443),(590,228),(590,350),(590,122),(590,265),(590,75),(590,173),(590,160),(590,165),(590,110),(590,96),(590,249),(590,139),(591,261),(591,421),(591,17),(591,263),(591,124),(591,391),(591,234),(591,272),(591,264),(591,40),(591,155),(591,196),(592,273),(592,207),(592,176),(592,23),(592,124),(592,125),(594,415),(594,168),(594,491),(594,221),(594,476),(594,121),(594,443),(594,265),(594,390),(594,176),(594,38),(594,181),(594,132),(594,495),(596,156),(596,210),(596,81),(596,423),(599,158),(599,296),(599,261),(599,121),(599,359),(599,385),(599,306),(599,422),(599,438),(599,246),(599,495),(599,328),(599,53),(599,394),(599,267),(599,79),(599,185),(599,213),(599,248),(599,234),(601,193),(601,424),(601,17),(601,169),(601,207),(604,461),(604,475),(604,5),(604,343),(604,195),(604,406),(604,74),(604,440),(604,377),(605,277),(605,195),(605,371),(605,280),(605,116),(605,481),(605,169),(605,262),(605,222),(605,327),(605,10),(605,409),(605,327),(605,146),(605,429),(605,161),(605,258),(605,238),(605,178),(605,83),(605,174),(605,1),(605,190),(605,291),(605,138),(605,207),(605,260),(605,407),(605,7),(607,102),(607,144),(607,456),(607,265),(607,406),(607,258),(607,329),(607,398),(607,496),(607,114),(607,18),(607,188),(607,229),(607,139),(607,36),(607,438),(607,43),(607,112),(607,16),(607,11),(607,90),(607,480),(607,117),(608,277),(608,202),(608,241),(608,64),(608,405),(608,31),(608,420),(608,252),(608,302),(609,83),(609,499),(609,495),(609,316),(609,150),(609,159),(609,371),(609,319),(609,496),(609,102),(609,224),(609,322),(609,347),(609,147),(609,274),(609,471),(609,212),(609,468),(609,495),(609,87),(609,188),(610,451),(610,393),(612,202),(612,24),(612,58),(612,69),(612,105),(612,209),(612,462),(612,163),(612,419),(612,72),(612,257),(612,352),(612,289),(612,492),(612,181),(612,167),(612,461),(612,116),(612,254),(612,451),(612,476),(612,273),(612,140),(612,142),(612,280),(613,233),(613,113),(613,483),(613,105),(613,363),(613,48),(614,372),(614,144),(614,413),(614,291),(614,311),(614,262),(614,196),(614,234),(614,311),(614,173),(614,328),(614,336),(614,364),(614,282),(614,106),(614,276),(614,253),(616,176),(616,387),(616,380),(616,212),(616,331),(616,141),(616,483),(616,28),(616,115),(616,95),(616,36),(616,0),(616,471),(616,286),(616,333),(616,251),(616,349),(616,88),(616,114),(616,366),(616,276),(616,246),(616,137),(616,83),(616,61),(616,259),(616,417),(616,141),(616,315),(619,0),(620,291),(620,224),(620,499),(620,271),(620,290),(620,18),(620,102),(620,414),(620,99),(620,172),(620,238),(620,155),(620,433),(620,478),(620,499),(620,174),(620,270),(620,412),(620,0),(620,56),(620,233),(620,138),(620,400),(620,3),(620,19),(621,125),(621,422),(621,342),(622,329),(622,187),(622,125),(622,152),(622,31),(622,200),(622,297),(622,62),(622,435),(622,362),(622,436),(622,44),(622,393),(622,212),(622,149),(622,421),(622,296),(622,360),(622,489),(622,97),(622,312),(622,279),(622,407),(622,362),(622,3),(622,483),(623,291),(623,58),(623,463),(623,266),(623,428),(623,174),(623,128),(623,499),(623,2),(623,114),(623,323),(623,121),(623,138),(623,85),(623,203),(623,146),(623,260),(623,436),(623,231),(623,146),(623,468),(623,83),(623,44),(623,398),(623,416),(624,325),(624,128),(624,486),(624,209),(624,83),(624,463),(624,114),(624,230),(624,339),(624,432),(624,0),(626,466),(626,188),(626,301),(626,150),(626,287),(626,431),(626,21),(626,402),(626,397),(626,188),(626,394),(626,41),(626,187),(627,24),(628,95),(628,211),(628,27),(628,340),(628,417),(628,50),(628,424),(628,283),(628,35),(628,117),(628,283),(628,257),(628,209),(628,22),(628,327),(628,112),(628,442),(628,452),(628,38),(628,454),(628,182),(628,88),(628,261),(628,129),(628,452),(628,63),(628,213),(628,76),(628,95),(629,473),(629,32),(629,209),(629,448),(629,409),(630,26),(630,47),(630,150),(630,133),(630,394),(630,298),(630,211),(630,338),(630,329),(630,43),(630,129),(630,6),(630,236),(630,57),(630,78),(630,152),(630,259),(630,307),(630,192),(630,280),(630,105),(630,486),(631,230),(631,282),(631,261),(631,440),(631,328),(631,211),(631,398),(631,459),(631,301),(631,492),(631,2),(631,411),(631,377),(631,408),(631,162),(631,485),(631,470),(631,170),(631,353),(632,499),(632,435),(632,21),(632,2),(632,167),(632,263),(632,472),(632,411),(632,262),(632,287),(632,14),(632,132),(632,259),(632,100),(632,403),(632,384),(632,313),(633,483),(633,125),(633,118),(633,331),(633,241),(633,331),(633,474),(633,339),(633,204),(633,237),(633,323),(633,493),(633,31),(633,129),(633,475),(633,387),(633,131),(633,116),(633,34),(633,201),(633,116),(634,304),(634,88),(634,95),(634,227),(634,479),(634,275),(634,367),(634,104),(634,208),(634,346),(634,19),(635,409),(635,116),(635,99),(635,114),(635,250),(635,285),(635,362),(635,255),(635,295),(635,373),(635,486),(635,24),(635,469),(635,46),(635,491),(635,462),(635,488),(635,338),(635,443),(639,468),(639,22),(639,150),(639,206),(643,8),(643,203),(643,187),(643,319),(643,171),(643,457),(643,425),(643,193),(645,74),(645,258),(645,58),(645,353),(645,414),(645,349),(645,202),(645,290),(647,15),(647,50),(647,217),(647,219),(647,292),(647,378),(647,4),(647,485),(647,190),(647,37),(647,317),(647,60),(647,405),(647,69),(647,249),(648,152),(648,458),(648,293),(648,17),(649,464),(649,129),(649,314),(649,202),(650,338),(650,466),(650,119),(650,39),(650,24),(650,388),(650,241),(650,312),(650,21),(650,393),(650,440),(650,495),(650,202),(650,426),(650,50),(650,448),(650,437),(650,151),(650,95),(650,17),(650,100),(650,83),(650,123),(650,320),(650,353),(650,279),(650,6),(650,30),(650,359),(651,231),(651,286),(651,413),(652,490),(652,219),(652,402),(652,364),(652,387),(652,492),(652,344),(652,178),(652,363),(652,180),(652,403),(652,430),(652,64),(652,484),(652,468),(652,219),(652,257),(652,261),(652,253),(652,393),(652,149),(652,43),(652,106),(652,390),(652,426),(652,308),(652,97),(652,102),(652,475),(653,234),(653,491),(653,74),(653,235),(653,180),(653,235),(653,45),(653,126),(653,434),(653,134),(653,64),(653,33),(653,104),(653,224),(653,89),(653,182),(654,104),(654,298),(654,85),(654,184),(654,223),(654,21),(654,176),(654,496),(654,282),(654,33),(654,333),(654,353),(655,32),(655,338),(655,256),(655,212),(655,471),(655,181),(655,57),(655,144),(655,159),(656,54),(656,96),(656,120),(656,204),(656,242),(656,383),(656,488),(656,410),(656,497),(656,110),(656,114),(656,80),(656,464),(656,463),(656,390),(656,88),(656,353),(656,432),(656,33),(656,433),(656,179),(656,155),(656,193),(656,109),(656,6),(656,282),(656,102),(656,103),(657,391),(657,75),(657,467),(657,419),(657,28),(657,134),(658,135),(658,486),(658,125),(658,281),(658,388),(658,118),(658,93),(658,487),(658,37),(658,282),(658,49),(658,118),(658,127),(658,117),(658,314),(658,141),(658,479),(658,338),(659,491),(659,396),(659,135),(659,55),(659,483),(659,407),(659,408),(659,369),(659,115),(659,45),(659,223),(659,369),(659,357),(659,481),(659,144),(661,420),(661,97),(661,119),(661,400),(661,369),(661,349),(661,111),(661,382),(661,163),(661,126),(661,391),(664,24),(664,222),(664,394),(664,98),(664,53),(665,461),(665,296),(665,193),(665,261),(665,260),(665,106),(665,320),(665,230),(665,182),(665,153),(665,458),(665,393),(665,212),(665,281),(665,319),(665,88),(665,241),(665,250),(665,342),(665,459),(665,268),(665,206),(665,403),(665,213),(665,404),(665,486),(665,67),(665,273),(666,485),(666,287),(666,383),(666,166),(666,177),(666,406),(666,289),(666,138),(666,373),(666,456),(666,281),(666,252),(666,28),(666,143),(666,387),(666,151),(666,249),(666,295),(666,165),(666,423),(666,337),(666,397),(666,225),(666,320),(666,465),(667,294),(668,363),(668,309),(668,373),(668,344),(668,226),(668,377),(668,328),(668,79),(668,110),(668,221),(668,436),(668,98),(668,231),(668,405),(668,493),(668,29),(668,164),(668,410),(668,165),(668,415),(669,116),(669,388),(669,483),(669,276),(669,201),(669,87),(669,164),(669,9),(669,335),(669,455),(669,492),(669,102),(669,360),(669,7),(669,473),(669,284),(670,226),(670,28),(670,327),(670,135),(670,302),(670,409),(670,489),(670,312),(670,130),(670,474),(670,370),(670,489),(670,260),(670,219),(670,429),(670,287),(670,300),(670,482),(670,25),(670,228),(670,343),(675,95),(675,56),(675,104),(675,374),(675,96),(675,277),(675,442),(675,215),(675,22),(675,381),(675,137),(675,378),(675,230),(676,75),(676,282),(676,35),(676,217),(676,344),(676,42),(676,474),(676,479),(676,499),(677,9),(677,443),(677,454),(677,385),(677,192),(677,388),(677,42),(677,379),(677,77),(677,370),(677,188),(677,194),(677,304),(677,209),(677,204),(677,80),(677,467),(677,153),(677,142),(677,440),(677,342),(677,115),(677,465),(678,167),(679,442),(679,92),(681,255),(681,364),(681,230),(681,127),(681,440),(681,458),(681,290),(681,352),(681,156),(681,274),(681,458),(681,46),(681,235),(681,68),(681,17),(681,484),(681,255),(681,181),(681,184),(681,363),(681,42),(681,418),(681,142),(681,193),(681,371),(681,410),(681,59),(681,47),(681,489),(682,302),(682,442),(682,248),(682,469),(682,65),(682,371),(682,184),(682,51),(682,403),(682,468),(682,156),(682,176),(682,394),(682,190),(682,480),(682,265),(682,360),(682,336),(682,234),(682,325),(682,432),(682,165),(682,171),(682,205),(682,341),(682,87),(682,283),(682,360),(682,336),(683,459),(683,145),(683,128),(683,270),(684,38),(684,13),(684,451),(684,369),(684,16),(684,307),(684,58),(684,336),(684,266),(684,362),(684,74),(684,433),(684,186),(684,46),(684,157),(684,47),(685,268),(685,12),(685,327),(685,101),(685,108),(685,316),(685,141),(685,420),(685,127),(685,143),(685,323),(685,487),(685,42),(685,383),(685,403),(685,477),(685,116),(685,372),(685,309),(685,178),(685,193),(685,120),(685,359),(685,297),(685,490),(685,406),(686,462),(686,243),(686,285),(686,472),(686,341),(686,405),(686,485),(686,145),(686,76),(686,480),(686,404),(686,163),(686,487),(687,52),(687,93),(687,243),(687,311),(688,143),(688,431),(688,334),(688,296),(688,429),(688,271),(688,346),(689,88),(689,329),(690,309),(690,393),(690,409),(690,470),(690,410),(691,424),(691,154),(691,146),(691,236),(691,194),(691,366),(691,11),(691,225),(691,152),(691,183),(691,93),(691,194),(691,84),(691,398),(691,460),(691,26),(691,171),(691,103),(691,135),(691,126),(691,161),(691,42),(691,164),(691,80),(691,406),(691,233),(691,266),(691,295),(691,87),(692,353),(692,443),(692,59),(692,163),(692,168),(692,349),(692,452),(692,399),(692,246),(692,39),(692,79),(692,32),(692,53),(692,412),(692,446),(692,384),(692,395),(692,195),(692,367),(692,330),(692,32),(692,288),(692,116),(692,411),(692,407),(692,3),(692,433),(692,344),(692,278),(693,206),(693,426),(693,462),(693,185),(693,413),(693,235),(693,492),(693,291),(693,291),(693,383),(693,415),(693,377),(693,195),(693,293),(694,177),(694,82),(694,31),(694,163),(694,448),(694,494),(694,82),(694,0),(694,186),(694,366),(694,28),(694,452),(694,236),(694,499),(694,29),(694,483),(694,260),(694,145),(694,456),(694,377),(694,301),(694,168),(694,450),(694,256),(694,371),(694,16),(694,82),(696,456),(696,117),(696,455),(697,349),(698,388),(698,255),(698,126),(698,213),(698,460),(698,29),(698,201),(698,472),(698,479),(698,386),(698,399),(698,418),(698,486),(698,50),(698,318),(698,137),(698,415),(698,310),(698,470),(698,356),(698,252),(698,115),(698,387),(698,112),(698,275),(698,228),(698,436),(698,350),(698,101),(699,472),(699,332),(699,499),(699,376),(699,361),(699,183),(699,427),(699,399),(699,360),(699,105),(699,257),(699,476),(699,102),(699,53),(699,157),(699,95),(699,147),(699,320),(699,322),(699,209),(699,145),(699,474),(699,160),(699,486),(699,120),(699,172),(700,315),(700,490),(700,95),(700,478),(700,365),(700,37),(700,300),(700,136),(700,355),(700,133),(700,307),(700,99),(700,327),(700,470),(700,322),(700,3),(700,68),(700,415),(702,238),(702,382),(702,274),(702,149),(702,233),(702,420),(702,367),(702,298),(702,389),(702,64),(702,370),(704,231),(704,395),(704,213),(704,328),(704,456),(704,312),(704,300),(704,113),(705,206),(705,95),(705,273),(705,260),(705,22),(705,281),(705,45),(705,99),(705,107),(705,327),(705,205),(705,37),(705,311),(705,494),(706,409),(706,25),(706,162),(706,177),(706,285),(706,408),(706,37),(706,81),(706,92),(706,304),(706,170),(706,98),(707,173),(707,4),(707,410),(707,266),(707,190),(707,92),(707,239),(707,330),(707,47),(707,221),(707,332),(707,176),(707,15),(707,29),(707,424),(707,165),(707,449),(707,358),(708,98),(708,311),(708,479),(708,433),(708,317),(708,341),(708,131),(708,76),(708,198),(708,68),(708,198),(708,359),(708,336),(708,127),(708,154),(708,416),(708,364),(708,332),(708,119),(708,274),(708,206),(708,350),(708,290),(708,279),(708,185),(708,94),(708,141),(708,294),(708,249),(709,381),(709,68),(709,103),(709,226),(709,41),(709,271),(709,337),(709,201),(709,176),(709,497),(709,319),(710,488),(710,151),(710,205),(710,37),(710,440),(710,138),(710,292),(710,482),(710,240),(710,132),(710,433),(710,122),(710,366),(710,472),(710,143),(710,126),(710,490),(710,158),(710,434),(710,326),(710,189),(710,64),(710,431),(710,233),(710,66),(711,494),(711,206),(711,222),(712,139),(712,184),(712,254),(712,290),(712,39),(712,221),(715,467),(715,400),(715,307),(715,465),(715,149),(715,376),(715,222),(715,440),(715,135),(715,161),(715,239),(715,379),(715,40),(715,114),(715,105),(715,497),(715,402),(715,327),(715,212),(715,163),(715,318),(715,411),(715,262),(715,103),(718,203),(718,199),(718,343),(718,92),(718,430),(718,239),(718,162),(718,227),(719,136),(719,235),(722,34),(722,271),(722,445),(722,359),(722,28),(722,66),(722,162),(722,113),(722,316),(722,122),(722,364),(722,397),(722,287),(722,255),(722,84),(722,428),(722,160),(722,99),(722,265),(722,96),(722,114),(722,490),(722,7),(722,203),(722,97),(722,329),(722,152),(722,250),(722,342),(723,32),(723,289),(723,282),(723,93),(723,497),(723,403),(723,56),(723,6),(725,176),(727,202),(727,287),(728,116),(728,470),(728,240),(728,204),(728,315),(728,454),(728,57),(728,331),(728,38),(728,488),(728,77),(728,277),(728,310),(728,141),(728,387),(728,298),(728,365),(728,407),(728,80),(728,444),(728,58),(728,159),(728,396),(728,319),(729,425),(729,161),(729,40),(729,314),(729,481),(729,173),(729,290),(729,462),(729,188),(729,412),(729,180),(729,259),(729,205),(729,314),(729,451),(729,234),(729,411),(729,217),(729,82),(729,85),(729,170),(729,210),(732,284),(733,65),(733,372),(733,17),(733,118),(733,402),(733,98),(733,374),(733,443),(733,395),(733,415),(733,135),(733,411),(733,245),(733,219),(733,109),(733,108),(733,353),(733,46),(733,491),(733,207),(733,418),(733,375),(733,214),(733,355),(733,460),(733,124),(735,22),(735,166),(735,314),(735,393),(735,479),(735,478),(735,473),(735,114),(735,39),(735,322),(737,167),(737,156),(737,334),(737,306),(737,400),(737,495),(737,495),(737,309),(737,205),(737,477),(737,494),(737,437),(737,72),(737,459),(737,342),(737,455),(737,254),(737,140),(737,359),(737,340),(737,425),(737,156),(737,7),(740,88),(740,224),(740,482),(740,376),(740,467),(740,327),(740,431),(740,203),(740,120),(740,38),(740,207),(740,325),(740,13),(740,77),(740,6),(740,247),(740,366),(740,281),(740,261),(740,446),(740,344),(740,284),(742,155),(742,30),(742,96),(742,147),(743,181),(743,127),(743,329),(743,255),(743,166),(743,446),(743,444),(743,261),(743,467),(743,123),(743,387),(743,185),(743,489),(743,137),(743,105),(743,275),(743,240),(743,250),(743,457),(744,118),(744,200),(744,45),(744,475),(744,468),(744,427),(744,275),(745,342),(745,67),(745,33),(745,147),(745,289),(745,341),(745,180),(745,111),(745,299),(745,83),(745,263),(745,8),(745,159),(745,388),(745,189),(745,401),(745,174),(745,277),(745,409),(745,38),(745,304),(745,169),(745,68),(745,81),(745,359),(745,201),(745,46),(747,171),(747,362),(747,231),(747,351),(747,239),(747,208),(747,480),(747,159),(747,120),(747,219),(747,325),(747,436),(747,85),(747,353),(747,217),(747,311),(747,331),(747,160),(747,81),(747,92),(747,73),(748,17),(748,423),(748,153),(748,78),(748,157),(748,354),(748,255),(748,170),(748,7),(748,381),(748,370),(748,351),(748,482),(748,265),(748,6),(748,190),(748,185),(748,339),(748,68),(748,374),(748,260),(748,400),(748,58),(748,47),(750,173),(750,187),(750,430),(750,381),(750,147),(750,412),(750,288),(750,457),(750,404),(750,90),(750,207),(750,161),(750,2),(750,353),(750,469),(750,140),(750,478),(750,276),(750,283),(750,324),(750,79),(751,134),(751,26),(751,397),(751,15),(751,253),(751,73),(751,402),(751,93),(751,429),(751,307),(751,83),(751,356),(751,422),(751,23),(751,439),(751,195),(751,28),(751,349),(751,54),(751,58),(751,318),(751,422),(751,332),(751,224),(751,318),(751,430),(751,200),(751,223),(751,459),(752,251),(752,240),(752,433),(752,460),(752,14),(752,114),(752,260),(753,442),(753,71),(753,90),(753,496),(753,417),(753,151),(753,363),(753,343),(753,413),(753,481),(753,341),(753,91),(753,27),(753,421),(753,114),(753,107),(753,372),(755,2),(755,409),(755,305),(755,24),(755,349),(755,366),(755,75),(755,19),(755,19),(755,454),(755,435),(755,127),(755,493),(755,87),(755,370),(755,431),(755,191),(755,130),(755,262),(755,380),(755,58),(755,94),(755,221),(755,425),(755,18),(755,370),(755,416),(755,50),(756,110),(756,203),(756,495),(756,184),(756,361),(756,355),(756,370),(756,461),(756,231),(757,208),(757,269),(757,428),(757,13),(757,224),(757,461),(757,229),(757,483),(757,311),(757,399),(757,103),(757,232),(757,102),(757,133),(757,175),(757,480),(757,327),(757,178),(757,315),(757,279),(757,205),(757,234),(757,398),(757,475),(757,147),(757,308),(757,443),(757,87),(757,241),(758,230),(758,42),(758,466),(758,224),(758,212),(758,157),(758,201),(758,67),(758,166),(758,366),(758,199),(758,168),(758,129),(758,197),(758,256),(758,173),(758,442),(758,167),(758,30),(758,37),(758,321),(758,120),(758,313),(758,471),(758,98),(758,46),(758,178),(758,36),(759,484),(759,278),(759,475),(759,378),(759,354),(759,135),(759,58),(759,149),(759,249),(759,114),(759,120),(759,279),(759,108),(759,219),(759,450),(759,326),(759,478),(759,463),(759,121),(759,277),(759,130),(759,137),(759,261),(759,342),(759,198),(759,294),(759,234),(759,105),(760,449),(760,329),(760,20),(760,154),(760,366),(760,74),(760,77),(760,127),(760,373),(760,18),(760,4),(760,63),(760,169),(760,446),(760,217),(760,172),(760,212),(760,237),(760,209),(760,266),(760,454),(760,6),(760,479),(760,397),(760,385),(760,333),(761,356),(763,11),(763,108),(763,35),(763,305),(763,301),(763,404),(765,322),(765,464),(765,65),(765,300),(765,414),(765,372),(765,333),(765,342),(765,347),(765,441),(765,79),(765,209),(765,175),(765,149),(765,470),(765,489),(765,162),(765,270),(765,250),(765,241),(765,436),(765,365),(765,97),(765,121),(765,145),(765,237),(765,422),(765,244),(765,76),(766,177),(766,167),(766,96),(766,269),(766,435),(766,126),(766,199),(766,97),(766,68),(766,4),(766,211),(766,342),(766,146),(766,151),(766,167),(766,241),(766,92),(766,449),(766,466),(766,70),(766,395),(766,4),(766,17),(766,424),(766,351),(766,299),(767,240),(767,353),(767,478),(767,119),(767,378),(767,302),(767,395),(767,223),(767,145),(767,131),(767,273),(767,278),(767,223),(767,434),(767,198),(767,240),(767,270),(767,307),(767,388),(767,236),(767,154),(767,264),(767,386),(767,354),(767,242),(767,192),(767,278),(767,267),(767,73),(768,15),(768,105),(768,433),(768,82),(768,436),(768,210),(768,494),(768,120),(768,332),(768,404),(768,278),(770,432),(770,260),(770,306),(770,412),(770,483),(770,86),(770,188),(770,490),(770,286),(770,65),(770,226),(770,353),(770,220),(770,92),(770,100),(770,284),(770,153),(770,256),(770,163),(770,368),(770,99),(772,67),(772,174),(772,172),(772,169),(772,248),(772,219),(772,89),(772,420),(772,310),(772,176),(772,487),(772,464),(772,257),(772,93),(772,425),(772,93),(772,490),(772,223),(772,127),(772,152),(772,200),(772,70),(772,407),(772,114),(772,326),(772,53),(772,304),(772,68),(772,63),(774,262),(774,415),(774,466),(774,89),(774,253),(775,307),(775,379),(775,122),(775,202),(775,480),(775,220),(775,306),(775,332),(775,322),(775,71),(775,472),(775,370),(775,279),(775,481),(775,203),(775,366),(775,35),(775,188),(775,65),(775,136),(775,124),(775,63),(775,73),(775,126),(775,335),(775,55),(775,88),(775,90),(775,37),(776,432),(776,34),(776,6),(776,223),(776,269),(776,172),(776,97),(776,373),(776,422),(776,352),(776,277),(776,146),(776,159),(776,72),(776,240),(776,109),(776,270),(776,458),(776,446),(776,279),(776,498),(776,292),(776,398),(776,440),(776,382),(776,476),(776,58),(778,365),(778,250),(778,437),(778,324),(778,279),(778,188),(778,380),(778,29),(778,195),(778,244),(778,49),(778,292),(778,237),(778,187),(778,360),(778,149),(778,265),(778,357),(778,286),(778,145),(778,397),(778,233),(778,103),(778,397),(778,477),(778,359),(778,103),(778,124),(778,119),(779,14),(779,304),(779,188),(779,81),(779,393),(779,465),(779,87),(779,37),(779,436),(779,195),(779,54),(779,386),(779,412),(779,352),(779,459),(779,426),(779,81),(779,133),(779,140),(779,157),(779,372),(779,376),(779,347),(779,402),(779,291),(779,489),(779,311),(779,247),(779,91),(781,459),(781,17),(781,140),(781,315),(781,365),(781,291),(781,467),(781,70),(781,26),(781,466),(781,7),(781,57),(781,371),(781,94),(781,180),(781,359),(781,51),(781,467),(781,75),(781,466),(781,426),(781,210),(781,50),(782,328),(782,426),(782,392),(782,16),(782,343),(782,79),(782,98),(782,127),(782,22),(782,155),(782,150),(782,354),(782,332),(782,442),(782,240),(782,220),(782,348),(782,437),(782,438),(782,207),(782,174),(782,385),(782,50),(782,208),(783,410),(783,52),(784,116),(784,358),(784,264),(784,365),(784,121),(784,177),(784,349),(784,160),(784,476),(784,56),(784,154),(784,168),(784,91),(784,69),(784,118),(784,439),(785,264),(785,21),(785,185),(785,31),(785,117),(785,187),(785,88),(785,491),(785,457),(785,109),(785,256),(785,370),(785,47),(785,126),(785,158),(785,401),(785,425),(785,19),(785,89),(786,42),(786,300),(786,229),(786,18),(786,156),(786,448),(786,11),(786,469),(786,65),(786,338),(786,299),(786,440),(786,3),(786,454),(786,221),(786,14),(786,237),(786,142),(786,189),(788,412),(788,13),(788,36),(788,87),(788,490),(788,223),(788,167),(788,247),(789,97),(789,157),(789,488),(789,39),(789,284),(789,97),(789,402),(789,154),(789,292),(789,264),(789,192),(789,113),(789,475),(789,400),(789,433),(789,483),(789,61),(789,410),(789,152),(789,49),(789,447),(789,84),(790,92),(790,15),(790,171),(790,199),(790,137),(791,153),(791,166),(791,115),(791,266),(791,129),(791,203),(791,217),(793,107),(793,352),(793,197),(793,183),(793,5),(793,407),(793,427),(793,283),(793,270),(793,296),(793,469),(793,221),(793,256),(793,149),(793,240),(793,151),(793,426),(793,387),(793,333),(793,108),(793,216),(793,310),(793,258),(793,20),(794,126),(794,108),(794,169),(794,230),(794,423),(794,457),(794,93),(794,178),(794,456),(794,426),(794,217),(794,272),(795,278),(795,4),(795,60),(796,204),(797,397),(797,28),(797,82),(797,473),(797,152),(797,291),(797,63),(797,274),(797,404),(797,469),(797,69),(797,78),(797,493),(797,338),(797,291),(797,119),(797,230),(797,108),(797,77),(797,230),(797,85),(797,399),(797,273),(797,459),(797,367),(797,189),(797,458),(797,191),(797,283),(798,175),(798,470),(798,49),(798,426),(798,282),(798,136),(798,385),(798,73),(798,54),(798,300),(798,44),(798,41),(798,478),(798,430),(798,411),(798,377),(798,473),(799,121),(799,99),(799,60),(799,381),(799,238),(799,302),(799,67),(799,303),(799,106),(799,393),(799,486),(799,264),(799,436),(799,462),(799,499),(799,53),(799,478),(799,260),(799,297),(799,435),(799,136),(799,416),(799,122),(799,129),(799,81),(799,195),(799,83),(800,166),(800,230),(800,167),(800,286),(800,339),(800,445),(800,455),(800,245),(800,15),(800,393),(800,219),(800,283),(800,268),(800,408),(800,149),(800,295),(800,331),(800,498),(800,252),(800,402),(800,167),(800,114),(800,48),(800,445),(800,288),(800,425),(802,85),(802,383),(802,372),(802,198),(803,170),(803,424),(806,493),(806,391),(806,207),(806,417),(806,138),(806,297),(806,58),(806,57),(806,320),(806,412),(806,361),(808,339),(808,240),(808,435),(808,439),(808,444),(808,91),(808,254),(808,274),(808,289),(809,421),(809,211),(809,434),(809,153),(809,104),(809,48),(809,48),(809,88),(809,477),(809,301),(809,73),(809,115),(809,289),(809,255),(809,458),(809,262),(809,400),(809,166),(809,0),(809,495),(809,272),(809,309),(809,253),(809,136),(809,201),(809,329),(809,438),(809,429),(810,59),(810,232),(810,364),(811,344),(811,309),(811,465),(811,110),(811,121),(811,116),(811,258),(811,252),(811,199),(811,280),(811,59),(811,247),(811,404),(811,338),(811,336),(811,435),(811,7),(813,386),(813,166),(813,446),(813,290),(813,289),(813,212),(813,39),(813,124),(813,320),(813,158),(813,498),(813,462),(813,221),(813,161),(813,148),(813,256),(813,400),(813,76),(813,162),(813,453),(813,124),(813,323),(813,258),(813,43),(813,244),(813,323),(813,346),(813,186),(813,459),(815,305),(815,398),(816,427),(816,62),(816,323),(816,350),(816,453),(816,32),(816,413),(816,452),(816,140),(816,294),(816,430),(816,487),(816,183),(816,295),(816,465),(816,57),(816,371),(816,131),(816,322),(816,329),(816,266),(816,327),(816,335),(816,9),(816,485),(816,393),(816,316),(816,329),(816,463),(817,393),(817,188),(817,399),(817,167),(817,214),(817,113),(817,312),(817,156),(817,127),(817,292),(817,409),(817,487),(817,204),(817,132),(817,109),(817,364),(817,160),(817,346),(817,273),(817,27),(817,493),(817,432),(817,305),(817,163),(817,306),(817,187),(818,120),(818,310),(818,384),(818,460),(818,26),(818,287),(818,90),(818,200),(818,364),(818,187),(818,271),(818,115),(818,57),(818,429),(818,108),(818,438),(818,166),(818,149),(818,467),(818,59),(818,85),(818,456),(818,74),(818,369),(818,306),(818,408),(818,18),(818,84),(818,432),(819,142),(819,406),(819,460),(819,9),(819,290),(819,350),(819,429),(819,388),(819,144),(819,431),(819,135),(819,495),(819,496),(819,23),(819,289),(819,97),(819,19),(819,430),(819,119),(819,202),(819,264),(819,242),(820,136),(820,490),(820,84),(820,346),(820,24),(820,89),(820,452),(820,444),(820,217),(820,159),(820,405),(820,480),(820,202),(820,420),(820,438),(821,29),(822,44),(822,128),(822,121),(822,313),(822,256),(822,121),(822,178),(822,174),(822,109),(822,273),(822,388),(822,48),(822,1),(822,48),(822,170),(822,20),(822,289),(822,390),(822,114),(822,293),(823,145),(825,186),(825,194),(825,258),(825,417),(825,297),(825,204),(825,496),(825,254),(825,117),(825,98),(825,172),(825,261),(825,344),(825,294),(825,75),(825,76),(825,185),(825,237),(826,224),(826,33),(829,151),(829,337),(829,254),(829,273),(829,69),(831,452),(831,108),(831,233),(831,133),(831,46),(831,293),(831,29),(831,22),(831,352),(831,82),(831,91),(831,250),(831,8),(831,477),(834,70),(834,159),(834,103),(834,222),(834,29),(834,170),(834,111),(834,17),(834,45),(834,399),(834,384),(834,108),(834,390),(835,213),(835,336),(835,268),(835,454),(835,277),(835,185),(835,154),(835,412),(835,80),(835,72),(835,146),(835,148),(835,27),(835,166),(835,221),(835,225),(837,111),(837,143),(837,216),(837,402),(837,475),(837,333),(837,282),(837,2),(837,303),(837,394),(837,214),(837,74),(837,175),(837,129),(837,241),(837,159),(837,460),(837,236),(837,193),(837,217),(837,319),(837,338),(837,237),(837,440),(837,164),(837,242),(838,73),(838,320),(838,68),(838,459),(838,150),(838,80),(838,488),(838,58),(838,485),(838,374),(838,403),(838,356),(838,361),(838,18),(838,406),(838,214),(838,495),(838,332),(838,334),(838,47),(838,230),(838,8),(838,212),(838,400),(838,57),(838,338),(839,313),(839,165),(839,204),(839,232),(839,195),(839,265),(839,368),(839,160),(839,130),(839,405),(839,174),(839,487),(839,480),(839,245),(839,133),(839,81),(839,182),(839,347),(839,187),(840,446),(841,93),(841,291),(842,349),(842,245),(842,203),(842,37),(842,76),(842,59),(842,60),(842,100),(842,65),(842,65),(842,58),(842,480),(842,415),(842,73),(842,69),(842,34),(842,275),(842,274),(844,223),(844,363),(844,478),(844,353),(844,51),(844,414),(844,291),(844,478),(844,350),(844,309),(844,457),(844,433),(844,23),(844,367),(844,74),(844,376),(844,164),(844,360),(844,22),(844,380),(844,418),(844,489),(844,445),(844,402),(844,470),(845,58),(845,32),(845,12),(845,212),(845,335),(845,11),(846,346),(846,292),(846,342),(846,65),(846,441),(846,443),(846,143),(846,389),(846,214),(846,299),(846,195),(846,302),(846,427),(846,295),(846,481),(846,189),(846,163),(846,296),(846,6),(846,487),(846,318),(846,357),(846,124),(846,250),(846,199),(846,72),(847,134),(847,308),(847,337),(847,182),(847,229),(847,422),(847,351),(847,335),(847,430),(847,250),(847,138),(847,382),(847,340),(847,422),(847,271),(847,237),(847,471),(847,215),(847,433),(847,268),(847,97),(847,497),(847,384),(847,292),(847,465),(847,353),(847,449),(847,325),(847,242),(849,20),(849,140),(849,401),(849,348),(849,488),(849,331),(849,36),(849,238),(849,488),(849,145),(849,486),(849,478),(849,423),(849,242),(849,399),(849,439),(849,42),(849,355),(849,270),(849,334),(849,221),(849,404),(849,353),(849,222),(849,450),(849,100),(849,158),(849,278),(849,269),(850,389),(850,261),(850,469),(850,469),(850,150),(850,382),(850,444),(850,345),(850,207),(850,268),(851,465),(851,458),(851,243),(851,50),(851,432),(851,170),(851,23),(851,5),(851,486),(852,250),(852,494),(852,333),(852,73),(852,175),(852,342),(852,241),(852,62),(852,13),(852,83),(852,399),(852,367),(852,78),(852,352),(852,437),(852,346),(852,94),(852,82),(852,448),(852,159),(852,61),(852,307),(852,256),(852,450),(852,193),(852,215),(852,455),(852,497),(853,230),(853,382),(854,146),(854,182),(855,34),(855,249),(855,289),(855,54),(855,106),(855,393),(855,5),(855,460),(855,241),(855,161),(855,36),(855,416),(855,475),(855,38),(855,15),(856,365),(856,456),(856,494),(856,143),(856,119),(856,251),(856,225),(856,51),(856,291),(856,178),(856,332),(856,180),(856,180),(856,457),(856,479),(856,279),(856,375),(856,272),(856,176),(856,169),(856,190),(856,190),(856,342),(856,61),(856,234),(856,75),(856,494),(856,497),(857,478),(857,14),(857,10),(857,270),(857,28),(857,420),(857,209),(857,208),(857,310),(857,282),(857,468),(857,498),(857,19),(857,464),(857,395),(857,138),(857,24),(857,491),(857,483),(857,10),(857,306),(857,128),(857,494),(857,166),(858,388),(859,59),(859,438),(859,178),(859,388),(859,201),(859,21),(859,365),(859,233),(859,410),(859,442),(859,64),(859,495),(859,325),(859,418),(859,101),(859,361),(859,217),(859,252),(859,360),(859,23),(859,155),(859,480),(859,446),(859,448),(859,189),(859,12),(862,100),(862,58),(862,205),(862,363),(862,387),(862,23),(862,304),(862,13),(863,252),(863,44),(863,219),(863,410),(863,488),(863,44),(863,58),(863,92),(863,365),(863,21),(863,298),(863,230),(863,102),(863,271),(863,70),(863,317),(863,65),(863,444),(863,341),(863,255),(863,332),(863,426),(863,154),(864,487),(864,338),(864,288),(864,330),(864,310),(864,85),(864,143),(864,21),(865,450),(865,232),(867,248),(867,153),(867,2),(867,279),(867,175),(868,266),(868,396),(868,137),(868,336),(868,397),(868,318),(868,252),(868,464),(868,165),(868,337),(868,37),(868,231),(868,355),(868,336),(868,361),(869,235),(869,152),(869,305),(869,183),(869,467),(869,321),(869,224),(869,470),(872,15),(872,292),(872,447),(872,130),(872,100),(872,26),(872,85),(872,106),(872,104),(872,150),(872,342),(872,299),(872,310),(872,426),(872,154),(872,215),(872,147),(872,239),(872,65),(872,372),(872,60),(872,194),(872,355),(872,122),(872,288),(872,452),(872,149),(872,323),(872,228),(873,433),(873,93),(873,284),(873,269),(873,348),(873,483),(873,320),(873,335),(873,157),(873,208),(873,202),(873,214),(873,256),(873,430),(873,99),(873,34),(873,117),(873,109),(873,69),(873,103),(874,417),(875,32),(876,103),(876,63),(876,240),(876,246),(876,84),(876,41),(877,339),(877,54),(877,230),(877,226),(877,146),(877,173),(877,437),(877,138),(877,497),(877,188),(877,247),(877,261),(877,122),(877,82),(877,34),(877,275),(877,5),(877,198),(877,64),(878,370),(878,44),(878,380),(879,209),(879,294),(879,208),(879,319),(879,399),(879,427),(879,57),(879,85),(879,211),(879,91),(879,225),(879,136),(879,88),(879,108),(879,221),(879,370),(879,136),(879,30),(879,135),(879,267),(879,315),(880,354),(880,175),(881,331),(881,330),(881,192),(881,292),(884,276),(884,278),(884,173),(884,231),(884,117),(884,338),(884,79),(885,333),(885,479),(885,34),(885,476),(885,238),(885,117),(885,315),(885,491),(885,243),(885,103),(885,177),(885,467),(885,37),(885,394),(885,179),(885,169),(885,332),(885,430),(885,362),(885,388),(885,67),(885,270),(885,422),(885,57),(885,328),(887,217),(888,356),(888,24),(888,94),(888,343),(888,191),(888,176),(888,430),(888,304),(888,493),(888,172),(888,414),(888,104),(888,162),(888,108),(888,251),(888,231),(888,384),(888,391),(888,246),(888,167),(888,122),(888,326),(891,440),(891,155),(891,361),(891,335),(891,143),(891,430),(891,274),(891,339),(891,48),(891,411),(891,287),(892,114),(892,212),(892,297),(892,356),(892,487),(892,107),(892,359),(892,461),(892,240),(892,253),(892,150),(892,138),(892,315),(892,303),(892,131),(892,48),(893,470),(893,279),(893,287),(893,462),(893,84),(893,442),(893,31),(893,353),(895,241),(895,85),(895,357),(895,344),(895,382),(895,8),(895,275),(895,280),(895,102),(895,346),(895,95),(895,222),(895,226),(895,495),(895,373),(895,325),(895,305),(895,433),(895,483),(895,87),(895,88),(895,135),(895,186),(895,161),(895,393),(895,285),(895,47),(895,153),(895,275),(896,399),(896,130),(896,157),(896,52),(896,394),(896,0),(896,470),(896,301),(896,141),(896,460),(896,182),(896,353),(896,121),(896,446),(896,246),(896,73),(896,491),(896,178),(896,377),(897,228),(897,83),(897,268),(897,228),(898,272),(898,394),(898,427),(898,121),(898,393),(899,13),(899,297),(899,169),(899,390),(899,476),(899,348),(899,386),(899,467),(899,370),(899,107),(899,358),(902,291),(902,314),(902,8),(902,126),(902,42),(902,109),(902,53),(902,296),(902,9),(902,82),(902,365),(902,65),(902,132),(902,146),(902,313),(902,125),(902,310),(902,286),(902,151),(902,76),(902,104),(902,281),(902,278),(902,4),(902,60),(902,116),(902,498),(903,326),(904,475),(904,426),(904,223),(904,295),(904,352),(905,331),(905,323),(905,335),(905,15),(905,312),(905,499),(905,483),(905,443),(905,242),(905,336),(905,78),(905,271),(905,96),(905,378),(905,0),(905,338),(905,89),(905,55),(905,476),(905,60),(905,466),(905,461),(905,427),(905,307),(905,146),(905,288),(905,282),(905,452),(906,34),(906,256),(906,200),(906,105),(906,363),(906,89),(909,41),(909,448),(909,445),(909,384),(909,211),(909,349),(910,70),(910,325),(910,210),(911,446),(911,61),(911,166),(911,323),(911,330),(911,220),(911,175),(911,470),(911,458),(911,232),(911,443),(911,209),(911,400),(911,168),(911,395),(911,292),(911,441),(911,276),(911,43),(911,272),(911,88),(911,272),(913,299),(913,311),(913,193),(913,133),(913,164),(913,234),(913,0),(913,141),(913,322),(913,278),(913,318),(913,199),(913,113),(913,212),(913,468),(913,347),(913,322),(913,243),(913,196),(913,15),(913,169),(913,434),(913,2),(913,302),(913,118),(913,178),(913,117),(913,297),(913,493),(914,97),(914,382),(914,241),(914,190),(914,182),(914,329),(914,285),(915,424),(915,143),(915,93),(915,83),(915,341),(915,16),(915,91),(915,265),(915,187),(915,88),(915,460),(915,86),(915,20),(915,35),(915,35),(915,22),(915,413),(915,305),(915,189),(915,400),(915,405),(915,256),(916,160),(916,141),(916,269),(916,38),(916,84),(916,24),(916,462),(916,281),(916,267),(916,150),(916,417),(916,127),(916,7),(916,223),(916,235),(916,60),(916,113),(916,278),(916,218),(916,186),(916,365),(918,472),(918,133),(919,393),(919,203),(919,420),(919,446),(919,34),(919,86),(919,145),(919,112),(919,270),(919,405),(919,219),(919,75),(919,317),(919,116),(919,430),(919,396),(919,301),(919,441),(919,192),(919,38),(919,471),(919,10),(922,471),(922,479),(922,444),(922,371),(922,209),(922,450),(922,395),(922,404),(922,377),(922,419),(922,447),(922,34),(922,242),(922,86),(922,491),(922,348),(922,126),(922,473),(922,433),(922,256),(922,494),(922,65),(922,353),(922,106),(922,399),(922,342),(922,221),(922,297),(922,97),(925,438),(925,305),(925,182),(925,112),(925,73),(925,272),(925,57),(925,143),(925,153),(925,165),(925,65),(926,44),(926,470),(926,476),(926,464),(926,429),(926,399),(926,81),(926,98),(926,473),(926,21),(926,167),(926,16),(926,192),(926,339),(926,436),(926,471),(926,166),(926,341),(926,66),(926,365),(926,191),(926,362),(926,95),(926,487),(926,438),(926,275),(927,253),(927,148),(927,174),(927,427),(927,110),(927,120),(927,443),(927,496),(927,428),(927,331),(927,347),(927,294),(927,368),(927,313),(927,414),(927,237),(927,243),(927,323),(927,276),(927,291),(927,351),(927,75),(927,357),(927,281),(927,348),(927,225),(927,214),(927,498),(927,145),(929,227),(929,484),(929,249),(929,427),(929,100),(929,92),(929,148),(929,193),(929,220),(929,466),(929,171),(929,444),(929,97),(929,169),(929,310),(929,441),(929,78),(930,364),(930,155),(930,144),(930,237),(930,65),(930,174),(930,337),(930,54),(930,161),(930,333),(930,209),(930,432),(930,354),(930,475),(930,145),(930,120),(930,93),(930,362),(930,302),(930,108),(930,343),(930,277),(930,317),(930,253),(930,116),(930,172),(930,491),(930,417),(931,448),(931,495),(931,90),(931,234),(931,0),(931,263),(931,396),(933,71),(933,223),(933,66),(933,206),(933,9),(933,279),(933,479),(933,211),(933,383),(933,295),(933,198),(933,422),(933,65),(933,163),(933,377),(934,220),(934,153),(934,355),(934,306),(934,225),(934,200),(934,71),(934,17),(934,327),(934,142),(934,239),(935,74),(935,25),(935,232),(935,150),(935,359),(935,438),(935,102),(935,414),(935,277),(935,343),(936,184),(937,472),(937,482),(937,382),(937,136),(937,283),(937,458),(937,116),(937,148),(937,426),(937,263),(937,444),(937,342),(937,3),(937,442),(937,303),(937,1),(937,135),(937,133),(937,405),(937,261),(937,382),(937,325),(937,60),(937,352),(937,284),(937,255),(940,439),(940,185),(940,326),(940,311),(940,425),(940,227),(940,335),(940,208),(941,40),(941,114),(941,146),(941,259),(941,409),(941,262),(941,56),(941,260),(941,391),(941,154),(941,61),(941,445),(941,485),(941,455),(942,417),(942,422),(942,337),(942,337),(942,392),(942,446),(942,63),(942,376),(942,325),(942,316),(943,198),(943,126),(943,312),(943,140),(943,156),(943,30),(943,421),(944,82),(944,126),(944,234),(944,151),(944,47),(944,61),(944,400),(944,63),(944,221),(944,325),(944,214),(944,272),(944,247),(944,432),(944,294),(944,478),(944,251),(944,399),(944,315),(944,162),(944,409),(944,212),(944,197),(944,367),(944,162),(946,244),(947,349),(947,229),(947,344),(947,294),(947,30),(947,19),(948,453),(948,140),(948,113),(948,150),(948,312),(948,157),(948,11),(948,451),(948,393),(948,433),(948,71),(948,185),(948,172),(948,152),(948,115),(948,251),(948,265),(948,374),(948,312),(948,49),(948,454),(949,11),(949,329),(949,276),(949,261),(949,161),(949,324),(949,186),(949,4),(949,374),(950,249),(950,295),(950,348),(950,290),(950,301),(951,241),(951,331),(951,90),(951,324),(951,190),(951,352),(951,251),(951,66),(951,337),(951,114),(951,292),(951,435),(951,241),(951,231),(951,22),(951,176),(951,248),(951,310),(951,336),(951,56),(951,99),(951,327),(952,122),(952,232),(952,31),(952,226),(952,49),(952,356),(952,191),(952,314),(952,429),(952,243),(952,425),(952,365),(952,119),(952,156),(952,231),(952,487),(952,472),(952,92),(952,213),(952,2),(952,181),(952,18),(952,35),(952,134),(952,161),(952,340),(952,307),(953,232),(953,17),(953,202),(955,253),(955,469),(955,182),(955,118),(955,471),(955,89),(955,310),(955,66),(955,270),(955,345),(955,457),(957,180),(957,156),(957,76),(957,43),(957,419),(957,415),(957,235),(957,386),(957,87),(958,75),(958,152),(958,79),(960,82),(960,247),(960,381),(960,355),(960,90),(960,478),(960,237),(960,351),(960,263),(960,497),(960,271),(960,146),(960,101),(960,313),(960,230),(960,425),(960,384),(960,35),(960,89),(960,250),(960,311),(960,406),(960,145),(960,345),(961,151),(961,465),(961,365),(961,17),(961,182),(961,12),(961,268),(961,207),(961,240),(961,424),(961,365),(961,253),(961,227),(961,4),(961,423),(961,467),(961,287),(961,173),(961,278),(964,39),(964,233),(964,365),(964,28),(964,400),(964,109),(964,449),(964,490),(964,25),(964,82),(964,199),(964,56),(964,476),(964,439),(964,102),(964,177),(964,26),(964,296),(964,474),(964,289),(964,108),(964,326),(964,117),(964,398),(964,2),(964,407),(964,316),(964,483),(964,100),(965,131),(965,372),(965,125),(965,405),(965,345),(965,321),(965,165),(965,363),(965,388),(965,251),(965,319),(965,55),(965,178),(965,234),(965,44),(965,86),(965,99),(965,447),(965,435),(965,439),(965,37),(965,87),(965,307),(965,295),(965,417),(965,294),(965,156),(966,381),(966,427),(966,266),(966,487),(966,485),(966,324),(966,367),(966,407),(966,15),(966,209),(966,198),(966,49),(966,488),(966,57),(966,415),(966,99),(966,204),(966,9),(966,237),(966,320),(966,32),(967,324),(967,307),(967,106),(967,137),(967,129),(967,221),(967,425),(968,249),(968,391),(968,233),(968,289),(968,198),(968,394),(968,102),(968,464),(968,150),(968,231),(968,165),(968,449),(968,271),(968,19),(968,469),(968,431),(968,381),(968,192),(968,458),(969,485),(969,25),(969,398),(969,161),(969,156),(969,487),(969,485),(970,311),(970,21),(970,417),(970,17),(970,71),(970,39),(970,404),(970,479),(970,358),(970,279),(970,373),(970,37),(970,163),(970,143),(970,85),(970,23),(970,470),(970,51),(970,438),(970,346),(970,253),(970,91),(970,14),(970,225),(970,350),(970,468),(970,345),(970,17),(971,21),(971,141),(971,90),(971,474),(971,103),(971,129),(971,98),(971,451),(973,133),(973,288),(973,143),(973,412),(976,460),(976,186),(976,211),(976,377),(976,477),(976,33),(976,239),(976,275),(976,358),(976,195),(976,297),(976,462),(976,405),(976,112),(976,450),(976,392),(976,7),(976,333),(976,413),(976,99),(976,22),(976,112),(976,115),(976,15),(976,425),(976,480),(976,162),(977,246),(978,375),(978,343),(978,131),(978,104),(978,342),(978,441),(978,150),(978,275),(978,288),(978,275),(978,346),(978,382),(978,103),(978,57),(978,194),(979,19),(979,198),(979,267),(979,90),(979,70),(979,460),(979,75),(979,195),(979,21),(979,344),(979,116),(979,247),(979,114),(979,409),(979,90),(979,118),(979,93),(979,62),(979,481),(979,329),(979,70),(979,134),(980,452),(980,258),(980,132),(980,357),(980,476),(980,152),(980,33),(980,339),(980,470),(980,307),(980,289),(980,411),(980,136),(982,371),(982,208),(982,436),(982,352),(982,170),(982,327),(982,77),(982,139),(982,484),(982,234),(982,377),(982,304),(983,356),(983,473),(983,260),(983,387),(983,72),(983,462),(983,248),(983,375),(983,288),(983,386),(983,426),(983,373),(983,46),(983,141),(983,86),(983,280),(983,210),(983,401),(983,179),(983,210),(983,484),(983,0),(983,229),(983,471),(983,477),(983,393),(984,10),(984,397),(984,450),(984,442),(984,210),(984,31),(984,337),(986,57),(986,310),(986,362),(986,268),(986,184),(986,138),(986,353),(986,348),(986,254),(986,173),(986,359),(986,369),(986,301),(986,440),(986,287),(986,3),(986,457),(986,19),(987,267),(987,293),(987,439),(987,56),(987,365),(987,122),(987,236),(987,332),(987,370),(987,32),(987,81),(987,482),(987,399),(987,14),(987,324),(987,420),(987,7),(987,410),(987,111),(987,367),(987,424),(987,38),(988,193),(988,131),(988,151),(988,326),(988,413),(988,204),(988,392),(988,255),(988,345),(988,193),(988,211),(988,20),(988,404),(988,24),(988,142),(988,55),(988,93),(988,439),(988,196),(988,2),(988,128),(988,294),(988,253),(988,254),(988,77),(988,70),(988,76),(988,249),(989,172),(989,91),(989,74),(989,408),(989,28),(989,215),(990,325),(990,25),(990,2),(990,441),(990,63),(990,121),(990,277),(990,284),(990,428),(990,252),(990,179),(990,116),(990,473),(990,320),(990,436),(990,107),(990,339),(990,138),(990,301),(990,67),(990,77),(990,289),(992,34),(992,356),(992,196),(992,492),(992,171),(992,92),(992,344),(992,11),(992,73),(992,180),(992,174),(992,293),(992,186),(992,65),(992,452),(992,396),(992,116),(992,211),(992,147),(992,59),(992,25),(992,467),(992,490),(992,275),(992,450),(992,116),(992,159),(992,35),(992,281),(993,414),(993,492),(993,324),(993,426),(993,102),(993,356),(995,416),(995,58),(995,56),(995,419),(995,65),(995,253),(995,258),(995,407),(995,183),(995,240),(995,31),(995,413),(995,40),(995,299),(995,368),(995,162),(995,260),(995,493),(995,291),(995,83),(995,50),(995,195),(995,65),(995,431),(995,50),(995,38),(995,485),(995,492),(995,228),(997,51),(997,194),(997,495),(997,442),(997,85),(997,320),(997,214),(997,450),(997,185),(997,7),(997,380),(997,76),(997,264),(997,242),(997,414),(997,258),(997,426),(1000,488),(1000,418),(1000,413),(1000,366),(1000,44),(1000,65),(1000,124),(1000,129),(1000,10),(1000,409),(1000,49),(1000,103),(1000,393),(1000,138),(1000,466),(1000,187),(1000,467),(1000,158),(1000,493),(1000,142),(1000,194),(1000,423),(1000,45),(1000,174),(1000,463),(1000,36),(1000,335),(1000,240),(1000,294),(1002,100),(1002,204),(1003,312),(1003,103),(1005,219),(1005,340),(1005,445),(1005,459),(1005,48),(1005,283),(1005,426),(1005,437),(1005,380),(1005,415),(1005,174),(1006,277),(1008,298),(1008,373),(1008,115),(1008,487),(1008,23),(1008,85),(1008,118),(1008,231),(1008,454),(1008,277),(1008,195),(1008,21),(1008,128),(1009,237),(1009,342),(1009,222),(1009,9),(1009,319),(1009,149),(1009,278),(1009,368),(1009,410),(1009,451),(1009,493),(1009,150),(1009,393),(1009,303),(1009,421),(1009,316),(1009,356),(1009,189),(1009,42),(1009,185),(1009,320),(1010,241),(1011,499),(1011,416),(1011,212),(1011,182),(1011,47),(1011,42),(1011,323),(1011,38),(1011,217),(1011,5),(1011,400),(1011,15),(1011,75),(1011,216),(1011,280),(1011,462),(1011,200),(1011,217),(1011,131),(1011,138),(1012,128),(1012,91),(1012,97),(1012,493),(1012,380),(1012,307),(1012,15),(1012,271),(1013,205),(1014,159),(1014,155),(1014,204),(1014,250),(1015,238),(1015,399),(1015,311),(1015,58),(1015,342),(1015,248),(1015,106),(1015,409),(1015,49),(1015,369),(1015,323),(1015,45),(1015,498),(1015,263),(1015,53),(1015,496),(1015,86),(1015,90),(1015,254),(1015,334),(1015,114),(1015,471),(1015,163),(1015,351),(1015,443),(1015,133),(1015,274),(1015,478),(1015,172),(1016,161),(1016,264),(1016,415),(1016,363),(1016,44),(1016,304),(1016,185),(1016,330),(1017,428),(1017,412),(1017,222),(1017,364),(1017,206),(1017,164),(1017,265),(1017,56),(1017,144),(1017,286),(1017,208),(1017,468),(1017,26),(1019,17),(1019,362),(1019,132),(1019,101),(1019,460),(1019,205),(1019,27),(1019,156),(1019,132),(1021,36),(1021,217),(1021,127),(1021,355),(1021,149),(1021,78),(1021,369),(1021,186),(1021,131),(1021,466),(1021,451),(1021,3),(1021,326),(1021,321),(1021,269),(1022,80),(1022,98),(1022,338),(1022,194),(1022,408),(1022,388),(1022,445),(1022,61),(1022,386),(1022,207),(1022,287),(1022,408),(1022,46),(1022,291),(1022,192),(1022,253),(1022,261),(1022,222),(1022,313),(1022,151),(1022,283),(1022,40),(1022,440),(1023,151),(1023,456),(1023,393),(1023,50),(1025,174),(1025,18),(1025,348),(1025,305),(1025,48),(1025,24),(1025,201),(1025,115),(1025,178),(1025,25),(1025,228),(1025,319),(1025,24),(1025,57),(1025,454),(1025,397),(1025,75),(1025,92),(1025,346),(1025,323),(1025,375),(1025,31),(1025,170),(1025,24),(1025,477),(1026,306),(1026,257),(1026,276),(1026,164),(1026,208),(1026,425),(1026,358),(1026,206),(1026,202),(1026,406),(1026,107),(1026,287),(1026,316),(1026,190),(1026,82),(1026,201),(1026,289),(1026,224),(1026,298),(1026,63),(1026,186),(1026,122),(1026,168),(1026,55),(1026,10),(1026,471),(1028,293),(1028,61),(1028,118),(1028,289),(1028,94),(1028,455),(1028,456),(1028,112),(1028,10),(1028,77),(1028,215),(1028,206),(1028,43),(1028,218),(1028,293),(1028,342),(1028,45),(1028,147),(1028,299),(1028,410),(1028,33),(1028,105),(1028,120),(1028,289),(1028,245),(1028,179),(1028,45),(1028,372),(1028,68),(1029,490),(1029,75),(1029,17),(1029,345),(1029,289),(1029,498),(1029,64),(1029,56),(1029,330),(1029,396),(1029,256),(1029,418),(1029,346),(1029,337),(1029,1),(1029,138),(1029,141),(1029,126),(1029,52),(1029,466),(1029,179),(1029,211),(1029,288),(1029,325),(1029,254),(1029,176),(1029,230),(1029,20),(1029,133),(1031,114),(1031,170),(1031,215),(1031,323),(1031,498),(1032,497),(1032,184),(1032,146),(1032,461),(1032,91),(1032,13),(1032,2),(1032,215),(1032,362),(1032,89),(1032,207),(1032,377),(1032,212),(1032,278),(1032,257),(1032,40),(1032,104),(1032,248),(1032,403),(1032,157),(1032,170),(1032,65),(1032,368),(1032,15),(1032,284),(1032,433),(1032,387),(1033,80),(1033,199),(1033,221),(1033,245),(1033,287),(1033,270),(1033,243),(1033,156),(1033,431),(1033,435),(1033,306),(1033,419),(1033,231),(1033,216),(1033,413),(1034,191),(1034,120),(1034,443),(1034,341),(1036,293),(1036,0),(1036,29),(1036,319),(1036,328),(1036,466),(1036,3),(1036,445),(1036,434),(1036,119),(1036,245),(1036,425),(1037,167),(1037,9),(1038,63),(1038,233),(1038,395),(1038,339),(1038,481),(1038,303),(1038,363),(1038,319),(1038,480),(1038,19),(1038,104),(1038,141),(1038,226),(1038,20),(1038,188),(1038,371),(1038,204),(1038,1),(1038,255),(1038,363),(1038,327),(1038,468),(1038,444),(1038,344),(1038,81),(1038,463),(1038,1),(1038,7),(1038,226),(1039,484),(1039,361),(1039,460),(1039,238),(1039,51),(1040,47),(1040,180),(1040,204),(1040,372),(1040,393),(1040,358),(1040,206),(1040,48),(1040,65),(1040,248),(1040,171),(1040,247),(1040,224),(1040,341),(1040,405),(1040,121),(1040,139),(1040,447),(1040,356),(1040,266),(1040,343),(1040,443),(1040,357),(1040,22),(1040,172),(1040,89),(1040,207),(1040,432),(1040,295),(1041,394),(1041,187),(1041,303),(1041,409),(1041,321),(1041,4),(1041,405),(1041,382),(1041,277),(1042,421),(1042,354),(1042,389),(1042,267),(1042,493),(1042,393),(1042,28),(1042,144),(1042,236),(1042,498),(1042,373),(1042,186),(1042,272),(1042,337),(1042,240),(1042,101),(1042,65),(1042,216),(1042,69),(1042,361),(1042,476),(1042,321),(1042,445),(1042,324),(1043,71),(1043,282),(1043,494),(1043,290),(1043,106),(1043,262),(1043,391),(1043,19),(1043,157),(1043,323),(1043,496),(1043,172),(1043,27),(1043,477),(1043,290),(1043,214),(1043,335),(1043,376),(1043,319),(1043,168),(1045,319),(1045,29),(1045,478),(1045,47),(1045,172),(1045,417),(1045,372),(1046,484),(1046,323),(1046,1),(1046,65),(1046,379),(1046,74),(1046,38),(1046,465),(1046,156),(1046,379),(1046,474),(1046,82),(1046,400),(1046,462),(1047,354),(1047,230),(1047,64),(1047,211),(1047,15),(1047,255),(1047,394),(1047,234),(1047,365),(1047,238),(1047,426),(1047,163),(1047,123),(1047,14),(1047,183),(1047,368),(1047,190),(1047,8),(1047,83),(1047,426),(1047,253),(1047,440),(1047,3),(1047,186),(1047,62),(1047,357),(1047,366),(1047,36),(1047,264),(1048,424),(1048,358),(1048,322),(1048,45),(1048,5),(1048,83),(1048,140),(1049,67),(1049,75),(1051,262),(1051,478),(1051,158),(1051,492),(1051,43),(1051,435),(1051,413),(1051,371),(1051,272),(1051,451),(1051,259),(1051,295),(1051,2),(1051,64),(1051,182),(1052,5),(1052,73),(1052,422),(1052,185),(1052,343),(1052,47),(1052,53),(1052,161),(1052,161),(1052,240),(1052,385),(1052,315),(1052,340),(1052,346),(1052,445),(1052,115),(1052,473),(1052,189),(1052,1),(1052,47),(1052,212),(1052,133),(1052,354),(1052,250),(1052,325),(1052,153),(1053,371),(1053,369),(1053,467),(1053,292),(1053,60),(1053,313),(1053,317),(1053,372),(1053,102),(1053,398),(1053,420),(1053,52),(1053,375),(1053,314),(1053,171),(1054,172),(1054,69),(1054,118),(1054,428),(1054,69),(1054,367),(1054,299),(1054,62),(1054,152),(1054,6),(1054,303),(1054,379),(1054,316),(1054,196),(1054,27),(1054,139),(1057,160),(1057,14),(1057,405),(1057,170),(1057,95),(1057,465),(1057,373),(1057,445),(1057,100),(1057,211),(1057,479),(1057,401),(1057,335),(1057,283),(1057,66),(1057,494),(1057,21),(1057,343),(1057,450),(1057,13),(1057,108),(1057,53),(1057,176),(1057,365),(1057,232),(1057,479),(1057,191),(1057,35),(1057,9),(1058,56),(1058,384),(1058,120),(1058,400),(1058,105),(1058,284),(1058,487),(1058,425),(1058,172),(1058,439),(1058,85),(1058,373),(1058,76),(1058,65),(1058,242),(1059,237),(1059,251),(1059,440),(1059,265),(1059,399),(1059,255),(1059,26),(1059,330),(1059,166),(1059,308),(1059,395),(1059,350),(1059,21),(1059,9),(1059,378),(1059,7),(1059,366),(1059,469),(1059,408),(1059,90),(1059,338),(1059,310),(1059,202),(1059,121),(1059,379),(1059,375),(1059,449),(1059,28),(1059,414),(1063,114),(1063,194),(1063,40),(1063,421),(1063,460),(1063,315),(1063,2),(1063,39),(1063,134),(1063,197),(1063,166),(1063,296),(1063,158),(1063,388),(1063,486),(1063,62),(1063,87),(1063,314),(1063,62),(1063,34),(1063,70),(1064,38),(1064,124),(1064,267),(1064,23),(1064,186),(1064,266),(1064,302),(1064,384),(1064,257),(1064,461),(1064,417),(1064,245),(1064,340),(1065,425),(1065,34),(1065,446),(1065,337),(1065,497),(1065,423),(1065,428),(1065,238),(1065,427),(1065,73),(1065,189),(1065,458),(1065,97),(1065,392),(1065,413),(1065,295),(1065,378),(1065,260),(1065,296),(1065,488),(1065,378),(1065,482),(1065,406),(1065,275),(1065,18),(1065,81),(1065,337),(1065,475),(1065,391),(1066,52),(1066,123),(1066,436),(1066,491),(1066,375),(1066,106),(1066,283),(1066,182),(1066,498),(1066,338),(1066,464),(1066,321),(1066,409),(1066,355),(1066,224),(1068,88),(1068,296),(1068,152),(1068,121),(1068,215),(1068,491),(1068,174),(1068,101),(1068,430),(1068,197),(1068,421),(1070,351),(1070,291),(1070,411),(1070,160),(1070,443),(1070,383),(1070,110),(1070,346),(1071,271),(1071,417),(1071,221),(1073,359),(1073,392),(1073,148),(1073,349),(1073,469),(1073,201),(1073,44),(1073,329),(1073,249),(1073,466),(1075,174),(1075,383),(1078,47),(1078,0),(1078,449),(1079,460),(1079,28),(1079,169),(1079,426),(1079,141),(1079,2),(1079,291),(1079,176),(1079,472),(1079,431),(1079,46),(1079,100),(1079,128),(1079,350),(1079,493),(1079,409),(1079,214),(1079,326),(1079,266),(1079,9),(1079,380),(1079,162),(1079,178),(1080,339),(1080,182),(1080,200),(1080,376),(1080,362),(1080,138),(1080,105),(1080,451),(1080,96),(1080,407),(1080,410),(1080,191),(1080,208),(1080,420),(1080,266),(1080,209),(1080,157),(1080,277),(1080,155),(1080,81),(1080,110),(1080,473),(1080,218),(1080,397),(1080,246),(1080,333),(1080,275),(1080,338),(1080,177),(1081,351),(1082,283),(1082,97),(1082,1),(1082,76),(1082,258),(1082,484),(1082,94),(1082,262),(1082,103),(1082,230),(1082,326),(1082,68),(1082,115),(1082,34),(1082,20),(1082,340),(1082,311),(1082,375),(1082,494),(1082,46),(1082,182),(1082,446),(1082,371),(1082,168),(1082,209),(1082,145),(1082,23),(1085,281),(1085,426),(1085,277),(1085,262),(1085,417),(1085,257),(1085,294),(1085,402),(1085,327),(1085,74),(1085,87),(1085,418),(1085,334),(1088,45),(1088,454),(1088,117),(1088,448),(1088,12),(1088,66),(1088,276),(1088,104),(1088,200),(1088,175),(1088,338),(1088,317),(1088,140),(1089,171),(1089,460),(1089,395),(1089,124),(1089,96),(1089,396),(1090,137),(1090,277),(1090,249),(1090,19),(1090,44),(1090,233),(1090,293),(1090,295),(1090,380),(1090,65),(1090,499),(1090,125),(1090,118),(1090,54),(1090,377),(1090,217),(1090,436),(1090,438),(1090,85),(1092,234),(1092,367),(1092,176),(1092,181),(1092,342),(1092,150),(1092,212),(1092,71),(1092,441),(1092,100),(1092,80),(1092,199),(1092,246),(1092,115),(1092,358),(1092,448),(1092,446),(1092,247),(1092,237),(1092,212),(1092,467),(1092,492),(1092,472),(1092,425),(1092,239),(1092,387),(1092,116),(1092,195),(1093,223),(1093,442),(1093,440),(1093,179),(1093,437),(1093,152),(1093,81),(1093,395),(1093,29),(1093,315),(1093,440),(1093,481),(1093,433),(1095,77),(1095,192),(1095,354),(1095,125),(1095,396),(1095,201),(1095,303),(1095,245),(1095,92),(1095,345),(1095,93),(1095,298),(1095,232),(1095,339),(1095,438),(1095,7),(1095,65),(1095,206),(1095,418),(1095,254),(1095,460),(1095,369),(1095,460),(1095,152),(1095,242),(1095,248),(1095,201),(1095,325),(1095,477),(1096,86),(1096,394),(1096,446),(1096,34),(1096,141),(1096,322),(1096,200),(1096,114),(1096,157),(1096,107),(1096,222),(1096,460),(1096,184),(1096,5),(1096,42),(1096,374),(1096,397),(1096,172),(1096,272),(1096,250),(1096,347),(1096,423),(1096,472),(1096,443),(1096,353),(1096,493),(1096,31),(1096,483),(1096,259),(1097,235),(1098,402),(1098,451),(1098,404),(1098,446),(1098,456),(1099,491),(1099,268),(1099,129),(1099,109),(1099,481),(1099,427),(1099,253),(1099,135),(1099,87),(1099,161),(1099,228),(1099,499),(1099,243),(1099,19),(1099,0),(1099,64),(1099,330),(1099,42),(1099,286),(1099,10),(1099,96),(1099,190),(1099,117),(1100,137),(1100,382),(1100,432),(1100,100),(1100,311),(1100,261),(1100,65),(1100,190),(1100,143),(1100,108),(1100,312),(1100,351),(1100,282),(1100,32),(1100,261),(1100,296),(1100,365),(1100,4),(1100,267),(1100,299),(1100,307),(1100,68),(1100,6),(1100,20),(1100,250),(1100,466),(1100,351),(1100,387),(1100,453),(1101,128),(1101,326),(1101,7),(1101,283),(1101,27),(1101,466),(1101,385),(1101,253),(1101,375),(1101,117),(1101,376),(1101,364),(1101,393),(1101,368),(1101,436),(1101,207),(1101,6),(1101,265),(1102,42),(1103,250),(1103,43),(1103,37),(1103,153),(1103,458),(1103,453),(1103,179),(1103,57),(1103,232),(1103,90),(1103,228),(1103,224),(1103,135),(1103,56),(1103,456),(1103,46),(1103,130),(1103,109),(1103,431),(1103,488),(1103,71),(1103,10),(1103,221),(1105,195),(1105,183),(1107,432),(1107,312),(1107,484),(1107,378),(1107,464),(1107,358),(1107,258),(1107,476),(1107,326),(1107,209),(1108,162),(1108,317),(1108,117),(1108,401),(1108,491),(1108,149),(1108,284),(1108,106),(1108,382),(1108,251),(1108,467),(1108,442),(1108,45),(1108,108),(1108,271),(1108,463),(1108,373),(1108,456),(1108,82),(1108,179),(1108,262),(1108,475),(1108,411),(1108,465),(1108,407),(1110,342),(1110,1),(1110,116),(1110,475),(1110,111),(1110,70),(1110,405),(1110,100),(1110,76),(1110,499),(1110,164),(1110,93),(1110,244),(1110,479),(1110,247),(1110,19),(1110,394),(1110,420),(1110,267),(1110,13),(1110,316),(1110,299),(1110,405),(1110,218),(1110,407),(1110,73),(1110,32),(1110,12),(1111,233),(1111,84),(1111,71),(1111,378),(1111,203),(1111,373),(1111,269),(1111,424),(1111,315),(1111,275),(1111,300),(1112,171),(1113,68),(1113,235),(1113,146),(1113,191),(1113,173),(1113,489),(1113,122),(1113,296),(1113,147),(1113,491),(1113,75),(1113,321),(1113,333),(1113,9),(1113,309),(1113,171),(1113,482),(1113,128),(1113,261),(1115,350),(1115,188),(1115,429),(1115,163),(1115,286),(1115,100),(1115,492),(1115,140),(1115,23),(1115,127),(1115,217),(1115,391),(1115,315),(1115,65),(1115,190),(1115,282),(1115,170),(1115,162),(1115,40),(1115,397),(1115,260),(1115,213),(1115,310),(1115,40),(1115,101),(1116,344),(1116,358),(1116,284),(1116,366),(1116,28),(1116,16),(1116,377),(1117,130),(1117,77),(1117,97),(1117,287),(1117,302),(1117,92),(1117,276),(1117,145),(1117,371),(1117,360),(1117,69),(1117,113),(1117,328),(1117,437),(1117,182),(1117,341),(1117,94),(1117,137),(1117,77),(1117,274),(1117,214),(1117,205),(1117,249),(1117,498),(1117,494),(1117,425),(1117,19),(1118,322),(1118,83),(1118,153),(1118,200),(1118,93),(1118,266),(1118,114),(1118,381),(1118,472),(1118,12),(1118,352),(1118,292),(1118,450),(1118,238),(1118,224),(1118,96),(1118,496),(1118,316),(1118,7),(1118,347),(1118,162),(1118,52),(1118,454),(1118,419),(1118,439),(1118,36),(1118,122),(1119,362),(1119,141),(1119,140),(1119,231),(1119,1),(1119,82),(1121,228),(1121,471),(1121,152),(1121,453),(1121,170),(1121,290),(1121,392),(1121,392),(1121,495),(1121,78),(1121,95),(1121,222),(1121,324),(1121,180),(1121,495),(1121,8),(1121,305),(1121,91),(1121,51),(1121,13),(1121,462),(1121,107),(1121,395),(1121,254),(1121,246),(1121,177),(1123,85),(1123,112),(1123,419),(1123,283),(1123,282),(1123,485),(1124,248),(1124,158),(1124,69),(1124,46),(1124,88),(1124,362),(1124,275),(1124,450),(1124,70),(1126,431),(1126,439),(1126,339),(1126,463),(1126,239),(1126,43),(1126,258),(1126,92),(1126,153),(1126,313),(1126,470),(1126,301),(1126,492),(1126,133),(1126,498),(1126,77),(1126,9),(1126,233),(1126,144),(1126,387),(1126,230),(1126,217),(1126,23),(1126,294),(1126,463),(1126,235),(1126,136),(1126,102),(1126,23),(1127,102),(1127,176),(1127,293),(1127,345),(1127,117),(1127,418),(1127,384),(1127,83),(1127,403),(1127,437),(1127,47),(1127,385),(1127,311),(1127,367),(1127,326),(1127,261),(1127,378),(1127,222),(1127,125),(1127,247),(1127,171),(1127,196),(1128,234),(1128,208),(1128,330),(1128,175),(1128,384),(1128,124),(1128,472),(1128,440),(1128,393),(1128,23),(1128,16),(1128,452),(1128,221),(1128,457),(1129,101),(1130,101),(1131,453),(1131,484),(1131,122),(1131,167),(1131,162),(1131,256),(1131,372),(1131,197),(1131,408),(1131,10),(1131,281),(1131,180),(1131,191),(1131,246),(1131,96),(1131,400),(1131,97),(1131,105),(1131,178),(1131,175),(1131,307),(1131,31),(1131,201),(1131,177),(1131,52),(1131,206),(1131,464),(1131,58),(1131,228),(1132,381),(1132,38),(1132,384),(1132,257),(1132,415),(1132,369),(1132,39),(1132,128),(1132,173),(1132,361),(1132,307),(1132,95),(1132,66),(1132,91),(1132,246),(1133,392),(1133,96),(1133,407),(1133,399),(1134,347),(1134,193),(1134,119),(1134,442),(1135,344),(1135,330),(1135,495),(1135,109),(1135,270),(1135,322),(1135,225),(1135,388),(1136,409),(1136,155),(1136,326),(1137,314),(1137,34),(1137,116),(1137,215),(1137,386),(1137,169),(1137,64),(1138,322),(1138,49),(1138,218),(1138,53),(1138,440),(1138,394),(1138,421),(1138,290),(1138,435),(1138,256),(1138,159),(1138,196),(1138,424),(1138,11),(1138,85),(1138,70),(1138,72),(1138,361),(1138,270),(1138,278),(1138,89),(1138,497),(1138,479),(1138,303),(1138,460),(1138,22),(1138,485),(1138,428),(1138,276),(1139,428),(1139,71),(1139,25),(1139,498),(1139,176),(1139,140),(1139,417),(1139,35),(1139,295),(1139,465),(1139,326),(1139,78),(1139,374),(1139,49),(1139,415),(1139,79),(1139,424),(1139,440),(1139,468),(1139,489),(1140,166),(1140,484),(1140,235),(1140,113),(1140,255),(1140,324),(1140,268),(1140,208),(1140,160),(1140,385),(1140,298),(1140,186),(1140,208),(1140,322),(1140,426),(1140,222),(1140,440),(1140,200),(1140,164),(1140,495),(1140,478),(1140,131),(1140,94),(1140,197),(1140,65),(1140,285),(1140,262),(1140,431),(1142,173),(1142,215),(1142,16),(1142,385),(1142,208),(1142,222),(1142,374),(1142,40),(1142,433),(1142,93),(1142,379),(1142,61),(1142,16),(1142,413),(1142,65),(1142,360),(1143,250),(1143,275),(1143,109),(1143,285),(1143,48),(1143,106),(1143,107),(1143,432),(1143,107),(1143,204),(1143,422),(1143,152),(1144,118),(1144,285),(1144,162),(1145,496),(1147,223),(1147,173),(1149,382),(1149,199),(1149,400),(1149,66),(1149,316),(1149,373),(1149,320),(1149,246),(1149,418),(1149,40),(1149,8),(1149,324),(1149,353),(1149,428),(1149,99),(1149,463),(1149,465),(1149,4),(1149,123),(1149,298),(1150,232),(1150,337),(1150,381),(1150,2),(1150,163),(1150,474),(1150,43),(1150,276),(1150,495),(1150,166),(1150,382),(1150,375),(1150,98),(1150,47),(1150,388),(1150,211),(1150,446),(1150,80),(1150,464),(1150,348),(1150,91),(1150,494),(1150,270),(1150,261),(1150,13),(1150,193),(1150,464),(1150,487),(1150,291),(1152,85),(1152,99),(1152,450),(1152,349),(1152,294),(1152,141),(1152,282),(1152,302),(1152,456),(1152,251),(1152,333),(1152,281),(1152,57),(1152,189),(1152,14),(1152,362),(1152,168),(1152,25),(1152,320),(1152,211),(1152,139),(1152,263),(1152,422),(1152,130),(1152,151),(1152,272),(1152,127),(1152,389),(1153,79),(1153,37),(1153,132),(1153,316),(1153,417),(1153,157),(1153,271),(1153,259),(1153,41),(1153,195),(1153,84),(1159,284),(1159,61),(1159,70),(1159,471),(1159,307),(1159,313),(1159,461),(1159,268),(1159,17),(1159,485),(1159,221),(1159,215),(1159,191),(1159,6),(1159,199),(1159,418),(1159,40),(1159,29),(1159,476),(1159,63),(1162,394),(1163,424),(1163,82),(1163,220),(1163,128),(1163,151),(1163,249),(1163,203),(1165,341),(1165,62),(1165,106),(1165,43),(1165,465),(1165,215),(1165,326),(1165,355),(1165,265),(1165,364),(1165,364),(1165,145),(1165,230),(1165,417),(1165,245),(1165,199),(1165,283),(1165,24),(1165,131),(1165,476),(1165,190),(1165,331),(1165,184),(1165,379),(1165,255),(1165,211),(1165,483),(1165,53),(1165,9),(1169,121),(1171,271),(1171,15),(1171,255),(1171,162),(1171,179),(1171,80),(1171,460),(1171,301),(1171,252),(1171,222),(1171,326),(1171,103),(1171,441),(1171,297),(1171,362),(1171,339),(1171,44),(1171,261),(1171,462),(1171,112),(1171,329),(1171,407),(1171,393),(1171,294),(1171,291),(1171,463),(1171,52),(1171,389),(1171,391),(1172,222),(1172,448),(1172,271),(1172,401),(1172,449),(1172,8),(1172,439),(1172,45),(1172,3),(1172,359),(1172,298),(1172,170),(1172,47),(1172,463),(1172,249),(1172,18),(1172,87),(1172,212),(1172,275),(1172,310),(1172,311),(1172,443),(1172,416),(1172,304),(1172,19),(1172,387),(1172,361),(1172,1),(1172,112),(1173,70),(1173,425),(1173,153),(1173,446),(1173,12),(1173,339),(1173,250),(1173,48),(1173,314),(1173,149),(1173,105),(1173,169),(1173,172),(1173,394),(1174,429),(1174,253),(1174,47),(1174,145),(1174,166),(1174,90),(1174,253),(1174,312),(1174,91),(1174,1),(1174,102),(1174,186),(1174,64),(1174,172),(1174,395),(1174,152),(1174,301),(1174,26),(1175,78),(1175,198),(1175,395),(1175,52),(1175,6),(1175,177),(1175,56),(1177,240),(1177,105),(1178,429),(1178,152),(1178,185),(1178,291),(1179,149),(1179,101),(1179,204),(1179,218),(1179,383),(1179,93),(1179,168),(1179,94),(1179,371),(1179,73),(1179,371),(1179,463),(1179,254),(1179,77),(1179,398),(1179,399),(1179,203),(1179,451),(1179,430),(1179,458),(1179,314),(1180,89),(1180,93),(1180,294),(1180,310),(1180,337),(1180,94),(1180,493),(1180,451),(1180,484),(1180,363),(1180,294),(1180,354),(1180,305),(1180,109),(1180,162),(1180,221),(1180,46),(1180,149),(1180,243),(1180,10),(1180,321),(1181,138),(1181,419),(1181,449),(1181,176),(1181,347),(1181,434),(1181,68),(1181,469),(1181,0),(1181,37),(1181,485),(1181,445),(1181,427),(1181,164),(1181,333),(1181,277),(1181,120),(1181,397),(1181,197),(1181,57),(1181,402),(1181,307),(1181,168),(1181,3),(1181,149),(1183,161),(1183,316),(1183,7),(1183,412),(1183,215),(1183,228),(1183,16),(1183,108),(1183,361),(1183,67),(1183,495),(1183,172),(1183,339),(1183,88),(1183,88),(1183,281),(1183,0),(1183,140),(1183,278),(1183,436),(1183,314),(1183,260),(1183,130),(1183,311),(1183,436),(1183,347),(1183,497),(1183,319),(1183,187),(1185,43),(1185,163),(1185,233),(1185,139),(1185,259),(1185,323),(1185,292),(1185,156),(1185,385),(1185,467),(1185,63),(1185,166),(1185,100),(1185,459),(1185,258),(1185,360),(1185,57),(1185,243),(1185,471),(1185,202),(1185,118),(1185,228),(1185,329),(1185,122),(1185,215),(1185,52),(1186,168),(1186,393),(1186,11),(1186,405),(1186,356),(1186,129),(1186,95),(1186,174),(1186,274),(1186,402),(1186,467),(1186,274),(1186,417),(1187,417),(1187,304),(1187,427),(1187,280),(1187,53),(1187,110),(1187,96),(1187,24),(1188,493),(1188,11),(1188,469),(1188,444),(1188,218),(1188,355),(1190,494),(1190,82),(1190,334),(1190,387),(1190,168),(1190,184),(1190,200),(1190,117),(1190,382),(1190,327),(1190,364),(1190,314),(1190,237),(1190,306),(1190,231),(1190,327),(1190,92),(1190,92),(1190,247),(1190,261),(1190,94),(1190,210),(1190,258),(1190,172),(1190,431),(1190,31),(1190,375),(1190,141),(1190,460),(1191,232),(1191,140),(1191,383),(1191,290),(1191,339),(1191,263),(1191,38),(1191,297),(1191,406),(1191,278),(1191,422),(1191,263),(1191,13),(1191,163),(1191,325),(1191,310),(1191,59),(1191,469),(1191,414),(1191,262),(1191,66),(1191,299),(1191,13),(1191,315),(1191,369),(1191,262),(1191,122),(1191,449),(1191,129),(1194,36),(1194,359),(1194,255),(1194,91),(1194,317),(1194,299),(1194,29),(1194,169),(1194,292),(1194,316),(1194,424),(1194,121),(1194,486),(1194,378),(1194,491),(1194,112),(1194,304),(1194,164),(1194,347),(1194,109),(1194,378),(1194,472),(1194,359),(1195,303),(1195,252),(1195,106),(1195,51),(1195,242),(1195,188),(1195,148),(1195,213),(1195,454),(1195,410),(1195,255),(1195,442),(1195,87),(1195,8),(1195,276),(1195,198),(1195,43),(1195,318),(1195,69),(1195,294),(1195,439),(1195,89),(1195,250),(1195,229),(1195,59),(1195,361),(1195,271),(1195,228),(1195,322),(1196,231),(1196,316),(1196,76),(1196,266),(1196,68),(1196,355),(1196,180),(1196,25),(1196,433),(1196,382),(1196,107),(1196,297),(1196,428),(1196,65),(1196,85),(1196,118),(1196,85),(1196,37),(1196,248),(1196,4),(1196,54),(1196,314),(1196,349),(1196,422),(1196,188),(1196,310),(1196,442),(1196,145),(1196,113),(1197,85),(1197,267),(1197,80),(1197,14),(1197,143),(1197,265),(1197,388),(1197,371),(1197,303),(1197,84),(1197,343),(1197,374),(1197,444),(1197,213),(1197,95),(1197,3),(1197,323),(1197,388),(1197,440),(1197,26),(1197,457),(1197,381),(1197,294),(1198,140),(1198,5),(1198,0),(1199,321),(1199,423),(1199,407),(1199,378),(1199,333),(1199,206),(1199,33),(1199,482),(1199,196),(1199,349),(1199,62),(1199,247),(1200,486),(1200,460),(1200,115),(1200,484),(1200,41),(1200,147),(1200,368),(1200,345),(1200,138),(1200,212),(1200,477),(1200,266),(1200,13),(1200,120),(1200,33),(1200,367),(1200,497),(1200,285),(1200,76),(1200,134),(1200,50),(1200,389),(1200,383),(1200,258),(1200,291),(1200,53),(1200,438),(1200,107),(1200,310),(1201,55),(1201,424),(1201,424),(1201,291),(1201,216),(1201,280),(1201,414),(1201,13),(1201,44),(1201,442),(1201,247),(1201,324),(1201,63),(1201,189),(1201,160),(1201,198),(1201,242),(1201,216),(1201,395),(1201,370),(1201,240),(1201,61),(1201,131),(1201,402),(1201,319),(1201,16),(1201,163),(1201,173),(1201,335),(1202,175),(1202,64),(1202,457),(1202,152),(1202,74),(1202,186),(1202,451),(1202,353),(1202,72),(1202,59),(1202,76),(1202,363),(1202,358),(1202,119),(1202,63),(1202,55),(1202,41),(1202,448),(1202,462),(1202,73),(1202,365),(1202,390),(1202,89),(1202,278),(1202,253),(1202,345),(1202,195),(1203,178),(1203,64),(1203,499),(1203,175),(1203,492),(1203,263),(1203,2),(1203,219),(1203,161),(1203,150),(1203,20),(1203,343),(1203,285),(1203,148),(1203,23),(1203,282),(1203,50),(1203,189),(1203,206),(1203,203),(1203,461),(1203,191),(1203,109),(1203,399),(1203,346),(1203,393),(1203,242),(1204,404),(1205,74),(1206,276),(1206,180),(1206,498),(1206,213),(1206,111),(1206,424),(1206,321),(1206,75),(1206,417),(1206,302),(1206,357),(1206,140),(1206,77),(1206,134),(1206,490),(1206,261),(1206,221),(1206,403),(1206,371),(1206,193),(1208,179),(1208,180),(1208,187),(1208,213),(1208,234),(1208,55),(1208,322),(1208,414),(1208,425),(1208,362),(1208,193),(1208,234),(1208,487),(1208,372),(1208,218),(1208,7),(1208,439),(1208,143),(1208,199),(1208,219),(1208,229),(1208,225),(1208,10),(1208,30),(1208,119),(1208,474),(1210,394),(1210,314),(1210,414),(1210,1),(1211,180),(1211,49),(1211,355),(1211,481),(1212,21),(1212,331),(1212,60),(1212,420),(1212,253),(1212,259),(1212,282),(1212,164),(1212,344),(1212,175),(1212,489),(1212,76),(1212,0),(1212,431),(1212,370),(1212,488),(1212,272),(1212,91),(1212,275),(1212,428),(1214,219),(1214,119),(1214,312),(1214,374),(1214,128),(1214,267),(1214,341),(1214,150),(1214,409),(1214,435),(1214,254),(1214,498),(1214,380),(1214,477),(1214,5),(1214,487),(1214,409),(1214,287),(1214,139),(1214,234),(1214,46),(1214,205),(1214,114),(1214,301),(1214,418),(1214,266),(1214,323),(1214,81),(1214,178),(1216,142),(1216,164),(1216,240),(1216,317),(1216,305),(1216,416),(1218,434),(1220,156),(1220,28),(1220,202),(1220,114),(1220,443),(1220,324),(1220,392),(1220,176),(1220,126),(1220,446),(1220,359),(1220,434),(1220,202),(1220,52),(1220,380),(1220,351),(1220,349),(1220,455),(1220,228),(1220,73),(1220,167),(1220,218),(1220,32),(1220,246),(1220,13),(1220,139),(1221,85),(1221,358),(1221,481),(1221,479),(1221,309),(1221,322),(1221,307),(1221,407),(1221,449),(1221,71),(1221,141),(1221,4),(1221,219),(1221,204),(1221,442),(1221,205),(1221,310),(1221,3),(1221,187),(1221,397),(1221,216),(1221,269),(1221,224),(1221,291),(1221,448),(1221,24),(1222,329),(1222,276),(1222,94),(1222,487),(1222,209),(1222,380),(1222,386),(1222,470),(1222,491),(1222,82),(1224,159),(1224,76),(1224,44),(1224,156),(1224,262),(1224,373),(1224,145),(1224,5),(1224,141),(1224,44),(1224,454),(1224,47),(1224,47),(1224,218),(1224,50),(1224,235),(1224,163),(1224,386),(1224,237),(1224,224),(1224,335),(1224,203),(1224,78),(1224,21),(1224,493),(1224,490),(1226,341),(1226,243),(1226,60),(1226,321),(1226,444),(1226,146),(1226,162),(1226,135),(1226,391),(1226,447),(1226,338),(1226,456),(1226,375),(1226,220),(1226,451),(1226,267),(1226,437),(1226,17),(1226,84),(1226,132),(1226,498),(1226,434),(1226,55),(1226,196),(1226,279),(1227,386),(1227,24),(1227,172),(1228,197),(1228,354),(1229,349),(1229,314),(1229,308),(1229,187),(1229,311),(1229,435),(1229,185),(1229,18),(1229,288),(1229,20),(1229,415),(1229,40),(1229,438),(1229,21),(1229,371),(1229,338),(1229,465),(1229,362),(1229,233),(1229,425),(1229,336),(1229,274),(1229,63),(1229,366),(1229,193),(1229,47),(1229,411),(1229,71),(1231,479),(1231,116),(1231,352),(1232,374),(1232,186),(1232,307),(1232,3),(1232,367),(1232,345),(1232,125),(1232,257),(1232,156),(1233,151),(1233,131),(1234,114),(1234,218),(1234,213),(1234,92),(1234,112),(1234,269),(1234,293),(1234,144),(1234,410),(1234,180),(1234,264),(1234,493),(1234,162),(1234,356),(1234,495),(1234,44),(1234,21),(1234,414),(1234,310),(1234,363),(1234,120),(1234,403),(1234,130),(1234,394),(1234,56),(1234,325),(1234,419),(1234,335),(1234,70),(1236,353),(1236,187),(1237,343),(1237,472),(1237,32),(1237,84),(1237,369),(1237,114),(1237,318),(1237,485),(1237,107),(1237,227),(1237,12),(1237,14),(1237,481),(1237,222),(1237,471),(1237,313),(1237,222),(1237,369),(1237,382),(1240,192),(1240,303),(1240,394),(1240,328),(1240,70),(1240,484),(1240,24),(1240,88),(1240,294),(1240,8),(1240,438),(1240,2),(1240,172),(1240,286),(1240,348),(1241,180),(1241,367),(1241,68),(1241,203),(1241,487),(1241,206),(1241,403),(1241,207),(1241,375),(1241,208),(1241,232),(1241,69),(1241,479),(1241,27),(1241,357),(1241,354),(1241,260),(1241,340),(1241,303),(1241,425),(1241,489),(1241,450),(1241,417),(1241,114),(1242,475),(1242,67),(1242,250),(1242,440),(1242,33),(1242,101),(1242,153),(1242,207),(1242,29),(1242,241),(1242,111),(1242,465),(1242,40),(1242,276),(1242,294),(1242,61),(1242,486),(1242,66),(1242,109),(1242,258),(1242,144),(1242,341),(1242,375),(1242,326),(1242,68),(1242,456),(1243,499),(1243,105),(1243,262),(1243,336),(1243,223),(1243,377),(1243,144),(1243,481),(1243,19),(1243,374),(1243,423),(1244,282),(1244,25),(1244,367),(1244,455),(1244,313),(1244,34),(1244,294),(1244,483),(1244,236),(1244,462),(1244,250),(1244,284),(1244,203),(1244,88),(1244,267),(1244,377),(1244,326),(1244,347),(1244,299),(1244,390),(1244,357),(1244,334),(1244,257),(1244,120),(1244,497),(1244,291),(1244,199),(1244,322),(1245,493),(1246,289),(1246,357),(1246,191),(1246,4),(1246,244),(1246,369),(1246,216),(1246,72),(1246,339),(1246,99),(1246,174),(1246,253),(1246,265),(1248,96),(1248,100),(1248,365),(1248,319),(1248,111),(1248,256),(1248,369),(1248,373),(1248,105),(1248,387),(1248,260),(1248,402),(1248,200),(1248,120),(1248,499),(1248,210),(1248,238),(1248,465),(1248,453),(1248,361),(1250,189),(1252,381),(1252,382),(1252,21),(1252,310),(1252,135),(1252,8),(1252,479),(1252,262),(1252,302),(1252,233),(1252,353),(1252,191),(1252,145),(1252,228),(1254,349),(1254,386),(1254,160),(1254,191),(1254,205),(1254,107),(1254,475),(1258,425),(1258,297),(1258,298),(1258,320),(1258,69),(1258,232),(1261,459),(1261,213),(1261,478),(1261,280),(1261,19),(1261,415),(1261,161),(1261,290),(1261,38),(1261,494),(1261,208),(1261,32),(1261,142),(1261,223),(1261,156),(1261,472),(1261,345),(1261,285),(1262,78),(1262,161),(1262,399),(1262,339),(1262,52),(1262,171),(1263,112),(1263,110),(1263,289),(1263,418),(1263,288),(1263,46),(1263,165),(1263,372),(1263,473),(1263,453),(1263,399),(1263,316),(1263,313),(1263,41),(1263,102),(1263,456),(1263,362),(1263,345),(1263,93),(1263,390),(1263,473),(1263,105),(1263,108),(1263,81),(1263,108),(1266,237),(1266,35),(1266,1),(1266,428),(1266,471),(1266,205),(1266,160),(1268,463),(1270,456),(1270,410),(1270,374),(1270,473),(1270,421),(1270,125),(1270,423),(1270,127),(1270,309),(1270,467),(1270,387),(1270,363),(1271,457),(1271,410),(1271,338),(1271,47),(1271,470),(1271,302),(1271,346),(1271,238),(1271,157),(1271,268),(1271,273),(1271,173),(1271,18),(1271,118),(1271,417),(1271,290),(1271,325),(1271,108),(1271,137),(1271,234),(1271,237),(1271,402),(1271,486),(1271,216),(1271,437),(1271,87),(1271,132),(1271,486),(1271,400),(1272,102),(1272,220),(1272,64),(1272,485),(1272,187),(1272,185),(1272,405),(1274,346),(1274,12),(1274,340),(1274,131),(1274,431),(1275,325),(1275,332),(1276,385),(1276,89),(1276,184),(1276,28),(1276,441),(1276,54),(1276,443),(1276,298),(1276,497),(1276,387),(1276,214),(1276,490),(1276,120),(1276,272),(1276,469),(1276,480),(1276,43),(1276,18),(1276,473),(1276,174),(1278,224),(1278,322),(1278,2),(1278,67),(1281,69),(1281,170),(1281,369),(1281,411),(1281,286),(1281,249),(1281,452),(1281,6),(1281,165),(1281,57),(1281,287),(1281,354),(1281,377),(1281,147),(1281,126),(1281,96),(1281,0),(1281,186),(1281,211),(1281,318),(1281,219),(1281,394),(1281,330),(1281,493),(1281,159),(1281,472),(1281,375),(1281,460),(1281,374),(1282,43),(1282,77),(1282,274),(1282,344),(1282,325),(1282,281),(1282,52),(1282,104),(1282,115),(1282,284),(1282,323),(1282,290),(1282,131),(1282,229),(1282,51),(1282,263),(1282,149),(1282,462),(1282,425),(1282,88),(1282,131),(1282,395),(1285,138),(1285,11),(1285,466),(1285,149),(1285,139),(1285,74),(1285,359),(1285,37),(1285,72),(1285,24),(1285,69),(1287,135),(1287,111),(1287,106),(1287,475),(1287,442),(1287,208),(1287,327),(1287,159),(1287,369),(1287,377),(1287,436),(1287,92),(1287,230),(1287,412),(1287,424),(1287,449),(1287,426),(1287,319),(1287,291),(1287,495),(1287,478),(1287,319),(1287,238),(1287,314),(1287,185),(1287,138),(1287,288),(1287,444),(1287,352),(1288,132),(1288,194),(1288,151),(1288,307),(1288,103),(1290,306),(1290,294),(1290,383),(1290,407),(1290,344),(1290,358),(1290,320),(1290,188),(1290,379),(1290,373),(1290,466),(1290,476),(1290,389),(1290,412),(1292,437),(1292,489),(1292,263),(1292,464),(1292,68),(1292,475),(1292,106),(1292,58),(1292,117),(1292,234),(1292,424),(1292,351),(1292,70),(1292,355),(1292,140),(1292,298),(1292,68),(1292,163),(1292,223),(1292,362),(1292,494),(1293,63),(1293,74),(1294,481),(1294,189),(1294,382),(1294,363),(1294,361),(1294,51),(1294,319),(1294,155),(1294,327),(1294,359),(1294,447),(1294,237),(1294,471),(1294,218),(1294,279),(1294,464),(1294,34),(1294,86),(1294,435),(1294,108),(1295,309),(1295,212),(1295,8),(1295,215),(1295,201),(1295,169),(1295,213),(1295,78),(1295,97),(1295,471),(1295,84),(1295,302),(1295,129),(1295,271),(1295,37),(1295,242),(1295,262),(1295,410),(1295,487),(1295,380),(1295,39),(1295,209),(1295,142),(1295,28),(1297,53),(1297,263),(1298,168),(1298,18),(1298,43),(1298,357),(1298,137),(1298,426),(1299,168),(1299,480),(1299,401),(1299,32),(1299,228),(1299,216),(1299,4),(1299,245),(1299,370),(1299,83),(1299,477),(1299,419),(1299,185),(1299,388),(1299,224),(1299,120),(1299,384),(1299,122),(1299,58),(1299,28),(1299,107),(1299,356),(1299,117),(1299,43),(1299,201),(1299,46),(1299,164),(1299,495),(1299,5),(1301,23),(1301,156),(1301,253),(1301,63),(1301,496),(1301,120),(1301,243),(1301,133),(1301,101),(1301,443),(1301,104),(1301,33),(1301,297),(1301,178),(1301,171),(1301,132),(1302,73),(1302,341),(1302,166),(1302,42),(1302,183),(1302,131),(1302,112),(1302,112),(1302,362),(1302,254),(1302,134),(1302,343),(1302,47),(1302,362),(1302,63),(1302,306),(1302,239),(1302,206),(1302,294),(1302,438),(1302,16),(1302,62),(1302,35),(1305,48),(1306,416),(1306,225),(1306,11),(1307,457),(1308,202),(1308,463),(1308,70),(1308,290),(1308,495),(1308,152),(1308,35),(1308,184),(1308,14),(1308,184),(1308,448),(1308,246),(1308,433),(1308,318),(1308,135),(1308,377),(1308,390),(1308,497),(1308,113),(1308,138),(1308,364),(1308,325),(1308,30),(1308,51),(1308,13),(1308,379),(1308,368),(1310,487),(1310,498),(1310,332),(1310,347),(1310,443),(1310,191),(1310,200),(1310,409),(1310,458),(1310,281),(1310,237),(1310,235),(1313,214),(1313,284),(1313,296),(1313,49),(1313,348),(1313,182),(1313,341),(1313,409),(1313,485),(1313,3),(1313,439),(1313,494),(1313,419),(1314,497),(1315,352),(1315,250),(1315,330),(1315,50),(1315,145),(1315,403),(1315,6),(1315,153),(1315,51),(1315,207),(1315,449),(1315,190),(1315,248),(1315,368),(1315,475),(1315,438),(1315,146),(1315,62),(1315,250),(1315,287),(1315,0),(1315,248),(1315,286),(1315,193),(1315,379),(1315,312),(1315,96),(1315,461),(1317,421),(1317,200),(1317,26),(1317,328),(1317,188),(1317,103),(1317,169),(1317,356),(1317,226),(1317,318),(1317,439),(1317,69),(1317,24),(1317,350),(1317,261),(1317,298),(1317,468),(1317,374),(1317,150),(1317,191),(1317,432),(1317,333),(1317,30),(1317,23),(1317,17),(1317,246),(1317,99),(1319,28),(1319,20),(1319,11),(1319,277),(1319,62),(1319,178),(1319,269),(1319,458),(1319,180),(1319,203),(1319,287),(1319,66),(1319,456),(1319,358),(1319,414),(1319,392),(1319,262),(1319,308),(1319,20),(1319,111),(1319,92),(1319,195),(1319,105),(1319,265),(1319,112),(1319,128),(1319,416),(1319,64),(1319,204),(1321,55),(1321,456),(1321,142),(1321,267),(1321,63),(1321,229),(1321,476),(1321,444),(1321,94),(1321,158),(1321,178),(1321,358),(1321,257),(1321,160),(1321,213),(1321,371),(1321,303),(1321,211),(1321,384),(1321,413),(1321,473),(1321,112),(1321,390),(1321,242),(1321,223),(1321,108),(1321,30),(1322,291),(1322,175),(1322,78),(1322,7),(1322,182),(1322,443),(1322,141),(1324,21),(1324,378),(1324,460),(1324,155),(1324,242),(1324,125),(1324,170),(1324,98),(1324,355),(1324,54),(1324,471),(1324,254),(1324,283),(1324,405),(1324,151),(1324,461),(1324,202),(1324,59),(1324,327),(1324,156),(1324,339),(1325,10),(1325,430),(1325,215),(1325,434),(1325,175),(1325,296),(1325,45),(1325,214),(1325,184),(1325,456),(1325,76),(1325,157),(1325,355),(1325,211),(1325,344),(1325,381),(1325,344),(1325,274),(1325,320),(1325,13),(1325,145),(1327,240),(1327,212),(1327,281),(1327,322),(1327,36),(1327,48),(1327,92),(1327,199),(1327,326),(1327,202),(1327,0),(1327,456),(1327,496),(1327,263),(1327,107),(1327,24),(1327,315),(1327,51),(1327,340),(1327,422),(1327,291),(1327,334),(1327,368),(1327,452),(1327,309),(1327,161),(1327,207),(1329,316),(1329,352),(1330,64),(1330,13),(1330,233),(1330,386),(1330,449),(1330,406),(1330,294),(1330,414),(1330,142),(1330,343),(1330,395),(1330,123),(1330,378),(1330,86),(1330,69),(1330,367),(1330,396),(1330,188),(1330,119),(1330,8),(1330,448),(1330,278),(1330,163),(1330,230),(1330,278),(1332,200),(1332,272),(1332,336),(1332,260),(1332,64),(1332,285),(1332,429),(1332,102),(1332,118),(1332,226),(1332,455),(1332,307),(1332,358),(1332,372),(1332,64),(1332,354),(1332,186),(1332,332),(1333,372),(1333,231),(1333,334),(1333,308),(1333,300),(1333,435),(1333,324),(1333,297),(1333,78),(1333,110),(1333,147),(1333,480),(1333,448),(1333,381),(1333,24),(1333,15),(1333,26),(1333,70),(1333,295),(1333,425),(1333,378),(1333,229),(1334,218),(1335,474),(1335,9),(1335,125),(1335,96),(1335,418),(1335,489),(1335,25),(1335,491),(1335,60),(1335,311),(1335,99),(1335,477),(1335,148),(1335,91),(1335,56),(1335,420),(1335,117),(1335,17),(1335,50),(1335,243),(1335,28),(1335,85),(1335,1),(1335,303),(1335,412),(1335,284),(1335,77),(1335,70),(1335,177),(1336,497),(1336,100),(1336,65),(1336,402),(1336,253),(1336,347),(1336,87),(1336,137),(1336,83),(1336,40),(1336,128),(1336,389),(1336,27),(1336,407),(1336,324),(1336,189),(1336,142),(1336,326),(1336,179),(1336,488),(1336,142),(1336,139),(1336,123),(1336,142),(1336,257),(1336,375),(1336,338),(1336,390),(1336,218),(1337,256),(1337,76),(1337,353),(1337,227),(1337,192),(1337,479),(1337,175),(1337,18),(1337,41),(1337,295),(1337,276),(1338,252),(1338,33),(1338,386),(1338,42),(1338,225),(1338,236),(1338,210),(1338,132),(1338,175),(1338,175),(1338,256),(1338,317),(1338,497),(1338,333),(1338,374),(1338,71),(1338,142),(1338,411),(1338,453),(1338,322),(1339,145),(1339,481),(1339,411),(1339,435),(1339,372),(1339,78),(1339,290),(1339,438),(1339,319),(1339,260),(1339,355),(1339,437),(1339,332),(1339,346),(1339,285),(1339,252),(1339,271),(1339,162),(1339,365),(1339,473),(1339,236),(1339,269),(1339,304),(1339,474),(1339,99),(1339,492),(1339,104),(1339,110),(1339,342),(1340,35),(1340,21),(1340,474),(1340,259),(1340,119),(1340,260),(1340,162),(1340,267),(1340,337),(1340,366),(1340,312),(1340,497),(1340,32),(1340,181),(1340,166),(1340,269),(1340,203),(1340,450),(1340,123),(1340,114),(1340,97),(1341,160),(1341,30),(1341,3),(1341,33),(1341,447),(1341,58),(1341,92),(1341,261),(1341,486),(1341,280),(1341,208),(1341,411),(1341,244),(1341,192),(1341,259),(1341,259),(1341,19),(1341,265),(1341,467),(1341,113),(1341,58),(1341,286),(1341,316),(1342,69),(1342,4),(1342,449),(1342,226),(1342,116),(1342,389),(1342,432),(1342,482),(1342,62),(1342,19),(1342,235),(1342,240),(1342,388),(1342,181),(1342,10),(1342,145),(1342,388),(1342,428),(1342,203),(1342,332),(1342,389),(1342,19),(1342,192),(1342,488),(1342,469),(1342,90),(1342,395),(1343,267),(1343,3),(1343,73),(1343,434),(1343,43),(1343,454),(1343,158),(1343,15),(1343,387),(1343,298),(1343,346),(1343,479),(1343,242),(1343,318),(1343,72),(1343,187),(1343,283),(1343,339),(1343,330),(1343,429),(1343,336),(1345,163),(1345,426),(1345,230),(1345,232),(1345,174),(1345,49),(1347,262),(1348,327),(1348,375),(1348,184),(1348,68),(1348,134),(1348,42),(1348,155),(1348,52),(1348,456),(1348,155),(1348,319),(1348,249),(1348,151),(1348,181),(1349,357),(1349,173),(1349,81),(1349,38),(1349,186),(1349,382),(1349,215),(1349,92),(1349,277),(1349,238),(1349,391),(1349,32),(1349,101),(1349,339),(1349,291),(1349,88),(1349,448),(1349,175),(1349,4),(1349,319),(1349,56),(1349,485),(1349,460),(1349,219),(1349,482),(1349,372),(1349,356),(1350,209),(1350,236),(1350,457),(1350,148),(1350,132),(1350,132),(1350,103),(1350,101),(1350,269),(1350,489),(1350,436),(1350,15),(1350,304),(1350,461),(1351,443),(1351,443),(1351,19),(1351,377),(1351,103),(1352,116),(1352,257),(1352,109),(1352,6),(1352,188),(1352,193),(1352,42),(1353,87),(1354,287),(1355,203),(1355,168),(1355,274),(1355,23),(1355,215),(1355,225),(1355,429),(1355,103),(1355,68),(1355,258),(1355,268),(1355,334),(1355,65),(1355,273),(1355,244),(1356,434),(1356,108),(1356,26),(1356,182),(1356,499),(1356,315),(1356,354),(1356,105),(1356,229),(1356,189),(1356,219),(1356,236),(1356,78),(1356,392),(1356,246),(1356,144),(1356,323),(1356,385),(1356,385),(1356,351),(1358,309),(1358,192),(1358,419),(1358,128),(1358,433),(1358,411),(1358,107),(1359,378),(1359,400),(1359,9),(1359,234),(1359,346),(1359,130),(1359,55),(1359,409),(1360,26),(1360,472),(1362,464),(1362,212),(1362,292),(1362,76),(1362,323),(1362,305),(1362,434),(1362,49),(1362,21),(1362,78),(1362,130),(1362,337),(1362,140),(1362,14),(1362,247),(1362,485),(1362,18),(1362,344),(1362,63),(1362,155),(1362,496),(1362,357),(1362,258),(1362,94),(1362,428),(1363,53),(1363,387),(1363,175),(1363,477),(1363,258),(1363,407),(1363,31),(1363,468),(1363,468),(1363,66),(1363,334),(1363,409),(1363,122),(1363,415),(1363,118),(1363,85),(1363,177),(1363,55),(1363,338),(1363,45),(1363,438),(1363,9),(1363,41),(1363,446),(1363,296),(1363,375),(1363,390),(1363,388),(1364,239),(1364,241),(1364,439),(1364,74),(1364,299),(1364,130),(1364,321),(1364,191),(1364,158),(1364,278),(1364,204),(1364,256),(1364,86),(1364,164),(1364,115),(1364,494),(1364,284),(1364,169),(1364,313),(1364,235),(1364,129),(1364,476),(1364,86),(1364,343),(1364,250),(1364,196),(1364,374),(1364,337),(1366,117),(1366,448),(1366,493),(1366,11),(1366,149),(1366,206),(1366,339),(1368,330),(1368,407),(1368,103),(1368,202),(1368,435),(1368,466),(1368,294),(1368,116),(1368,357),(1368,195),(1368,316),(1368,438),(1368,383),(1368,337),(1368,124),(1368,141),(1368,225),(1368,246),(1368,201),(1369,446),(1369,82),(1369,349),(1369,394),(1369,410),(1369,244),(1369,56),(1369,299),(1369,487),(1369,119),(1369,194),(1369,391),(1369,254),(1370,464),(1370,244),(1370,149),(1370,371),(1370,333),(1370,371),(1370,336),(1370,278),(1370,163),(1370,128),(1370,338),(1370,97),(1370,138),(1370,314),(1370,92),(1370,288),(1370,414),(1370,313),(1370,328),(1370,294),(1370,185),(1370,343),(1370,282),(1370,393),(1370,466),(1372,68),(1372,82),(1372,299),(1372,372),(1372,203),(1372,474),(1372,478),(1372,195),(1372,406),(1372,429),(1372,473),(1372,201),(1372,132),(1372,34),(1372,454),(1372,146),(1372,298),(1372,137),(1372,355),(1372,418),(1372,462),(1372,203),(1372,245),(1372,327),(1372,182),(1372,483),(1373,116),(1373,328),(1373,41),(1373,382),(1373,199),(1373,250),(1373,104),(1373,73),(1373,404),(1373,447),(1373,355),(1373,308),(1373,427),(1373,209),(1373,179),(1373,82),(1373,227),(1373,460),(1373,397),(1373,395),(1373,326),(1373,177),(1373,299),(1373,339),(1373,198),(1373,18),(1373,298),(1373,194),(1374,498),(1374,456),(1374,498),(1374,481),(1374,293),(1374,14),(1374,138),(1374,99),(1374,367),(1374,259),(1375,327),(1375,388),(1375,499),(1375,79),(1375,39),(1375,282),(1375,307),(1375,169),(1375,317),(1375,230),(1375,205),(1375,188),(1375,177),(1375,0),(1375,238),(1375,216),(1375,94),(1375,324),(1375,366),(1375,180),(1375,352),(1375,316),(1375,206),(1375,317),(1375,448),(1376,323),(1376,244),(1376,26),(1376,173),(1380,378),(1380,283),(1380,459),(1380,301),(1380,342),(1380,333),(1380,161),(1380,99),(1380,405),(1380,277),(1380,28),(1380,283),(1380,193),(1380,491),(1380,414),(1380,145),(1380,72),(1380,69),(1380,404),(1380,179),(1380,128),(1380,219),(1380,227),(1380,7),(1380,165),(1380,369),(1380,237),(1380,76),(1381,227),(1381,414),(1381,41),(1381,54),(1381,55),(1381,112),(1381,177),(1381,67),(1381,421),(1381,167),(1381,356),(1381,358),(1381,101),(1381,165),(1381,322),(1382,278),(1382,184),(1382,6),(1382,357),(1382,51),(1382,469),(1382,117),(1382,203),(1382,249),(1382,207),(1382,320),(1382,101),(1382,473),(1382,117),(1382,150),(1382,271),(1382,426),(1382,278),(1382,284),(1382,52),(1382,203),(1382,310),(1382,88),(1382,469),(1383,417),(1383,132),(1383,431),(1383,485),(1383,192),(1383,265),(1383,168),(1383,486),(1383,58),(1383,379),(1383,207),(1383,281),(1383,259),(1383,270),(1383,425),(1383,281),(1383,137),(1383,273),(1383,440),(1383,83),(1383,229),(1383,331),(1383,228),(1383,483),(1383,55),(1383,228),(1383,330),(1383,18),(1385,450),(1385,470),(1385,398),(1385,128),(1385,0),(1385,373),(1385,70),(1385,485),(1385,57),(1385,377),(1385,308),(1385,464),(1385,144),(1385,423),(1385,156),(1385,375),(1385,113),(1385,268),(1385,222),(1385,137),(1385,180),(1385,44),(1385,157),(1385,30),(1385,361),(1385,92),(1385,353),(1385,377),(1385,100),(1386,139),(1386,197),(1386,55),(1386,416),(1386,257),(1386,112),(1387,156),(1387,92),(1387,2),(1387,347),(1387,253),(1387,161),(1387,279),(1388,358),(1388,362),(1388,366),(1388,355),(1388,191),(1388,356),(1388,488),(1388,222),(1388,489),(1388,421),(1388,426),(1388,67),(1388,143),(1388,419),(1388,123),(1388,264),(1388,73),(1388,440),(1388,248),(1388,451),(1388,207),(1388,337),(1388,431),(1389,348),(1389,36),(1389,201),(1389,100),(1389,20),(1389,222),(1389,351),(1390,293),(1390,42),(1391,343),(1391,443),(1391,262),(1391,323),(1391,140),(1391,283),(1391,187),(1391,176),(1391,115),(1391,71),(1391,321),(1391,62),(1391,189),(1391,73),(1391,227),(1391,17),(1391,416),(1392,232),(1392,293),(1392,350),(1392,357),(1392,254),(1392,107),(1392,434),(1392,381),(1392,230),(1392,222),(1392,437),(1392,35),(1392,217),(1392,79),(1392,334),(1393,281),(1393,68),(1393,232),(1394,37),(1394,308),(1394,408),(1394,451),(1394,100),(1394,265),(1394,95),(1394,366),(1394,168),(1394,121),(1394,99),(1394,414),(1394,121),(1394,62),(1394,338),(1394,99),(1394,437),(1394,446),(1394,474),(1394,399),(1395,44),(1395,144),(1396,146),(1396,83),(1396,2),(1396,442),(1396,64),(1396,228),(1396,118),(1396,470),(1396,51),(1396,25),(1396,438),(1396,101),(1396,124),(1396,252),(1396,297),(1396,235),(1396,124),(1397,274),(1397,474),(1397,128),(1397,330),(1397,150),(1398,314),(1398,267),(1398,125),(1398,196),(1398,145),(1398,0),(1398,280),(1398,396),(1398,454),(1398,10),(1398,429),(1398,146),(1398,407),(1398,432),(1398,127),(1398,308),(1398,437),(1398,195),(1398,182),(1398,430),(1398,415),(1398,428),(1398,41),(1398,263),(1398,371),(1398,302),(1398,366),(1399,451),(1399,493),(1399,124),(1399,121),(1399,39),(1399,358),(1399,415),(1399,23),(1399,273),(1399,303),(1400,279),(1400,253),(1400,135),(1400,464),(1400,438),(1400,496),(1400,118),(1400,224),(1400,63),(1400,473),(1400,262),(1400,208),(1400,295),(1400,185),(1400,209),(1400,205),(1400,121),(1400,431),(1400,427),(1400,479),(1400,309),(1400,29),(1400,110),(1400,293),(1400,170),(1402,160),(1402,460),(1402,174),(1402,35),(1402,151),(1402,145),(1402,11),(1402,353),(1402,238),(1402,416),(1402,295),(1402,114),(1402,229),(1402,348),(1402,5),(1402,320),(1402,217),(1402,104),(1402,331),(1402,125),(1402,98),(1402,150),(1402,284),(1402,79),(1402,190),(1403,468),(1403,263),(1403,216),(1403,146),(1403,294),(1403,264),(1403,206),(1403,487),(1403,482),(1403,51),(1403,52),(1403,402),(1403,407),(1403,56),(1403,49),(1403,131),(1403,339),(1403,353),(1403,77),(1403,43),(1403,250),(1403,130),(1404,430),(1404,149),(1404,104),(1404,112),(1404,466),(1404,193),(1404,470),(1404,349),(1404,382),(1404,8),(1404,203),(1404,480),(1404,359),(1404,205),(1404,264),(1404,488),(1404,194),(1404,117),(1404,226),(1404,333),(1404,4),(1404,441),(1404,123),(1404,387),(1404,40),(1404,173),(1406,28),(1406,157),(1406,294),(1406,70),(1406,362),(1406,9),(1406,231),(1406,476),(1407,398),(1407,104),(1407,136),(1407,265),(1407,254),(1407,494),(1407,111),(1407,88),(1407,257),(1407,327),(1408,355),(1408,413),(1408,279),(1408,446),(1408,331),(1408,28),(1408,269),(1408,342),(1408,408),(1408,197),(1408,177),(1408,467),(1408,390),(1408,76),(1408,361),(1408,167),(1409,240),(1409,204),(1409,372),(1409,211),(1409,431),(1409,145),(1409,137),(1413,115),(1413,280),(1413,120),(1413,69),(1413,133),(1413,77),(1413,419),(1413,365),(1413,228),(1413,343),(1413,8),(1413,150),(1413,402),(1413,154),(1413,166),(1414,354),(1414,479),(1414,105),(1414,477),(1414,432),(1414,483),(1414,238),(1414,144),(1415,301),(1415,30),(1415,171),(1415,183),(1415,463),(1415,31),(1415,194),(1415,107),(1415,126),(1415,319),(1415,244),(1415,170),(1415,240),(1415,83),(1415,332),(1415,447),(1415,158),(1415,471),(1415,121),(1415,114),(1415,27),(1415,147),(1415,145),(1415,179),(1415,492),(1415,226),(1415,221),(1416,251),(1416,189),(1416,366),(1416,119),(1416,292),(1416,66),(1417,424),(1417,444),(1417,128),(1417,470),(1417,97),(1417,324),(1417,116),(1417,287),(1418,348),(1418,498),(1418,59),(1418,253),(1418,422),(1418,345),(1418,202),(1418,285),(1418,81),(1418,410),(1418,139),(1418,277),(1418,483),(1418,228),(1418,428),(1418,491),(1418,457),(1418,122),(1418,13),(1418,231),(1418,140),(1418,265),(1418,73),(1418,269),(1418,68),(1419,2),(1419,302),(1419,410),(1419,23),(1419,273),(1419,100),(1419,134),(1419,318),(1419,177),(1419,433),(1419,334),(1419,165),(1419,426),(1419,459),(1419,304),(1419,175),(1419,234),(1419,304),(1419,455),(1419,218),(1419,106),(1419,459),(1419,153),(1419,87),(1419,488),(1419,8),(1420,159),(1420,351),(1420,41),(1420,446),(1420,355),(1420,314),(1420,48),(1420,196),(1420,229),(1420,2),(1420,177),(1420,436),(1420,106),(1420,151),(1420,467),(1420,166),(1420,223),(1420,492),(1420,334),(1422,398),(1422,472),(1422,498),(1422,376),(1422,372),(1422,398),(1422,231),(1422,352),(1422,242),(1422,378),(1422,213),(1422,359),(1422,458),(1422,347),(1422,247),(1422,250),(1422,98),(1422,29),(1422,217),(1422,254),(1422,310),(1423,97),(1423,378),(1423,429),(1423,104),(1423,76),(1423,331),(1423,237),(1423,46),(1423,298),(1423,205),(1423,267),(1423,327),(1423,41),(1423,358),(1423,269),(1423,280),(1423,337),(1423,338),(1423,263),(1423,123),(1423,370),(1423,99),(1424,186),(1425,468),(1425,44),(1425,172),(1425,110),(1425,150),(1425,215),(1425,96),(1425,203),(1427,102),(1428,208),(1428,236),(1428,147),(1428,267),(1428,0),(1428,30),(1428,254),(1428,174),(1428,363),(1428,39),(1428,44),(1428,250),(1428,12),(1428,157),(1428,37),(1429,10),(1429,435),(1429,358),(1429,375),(1429,265),(1429,82),(1429,340),(1429,176),(1429,7),(1429,124),(1429,251),(1429,415),(1429,104),(1429,99),(1429,366),(1429,12),(1429,212),(1429,290),(1429,20),(1432,449),(1432,262),(1432,126),(1432,88),(1432,476),(1432,470),(1432,483),(1432,86),(1432,117),(1432,113),(1432,389),(1432,11),(1432,447),(1434,290),(1434,137),(1434,368),(1434,499),(1434,367),(1434,121),(1434,132),(1434,473),(1434,339),(1434,256),(1436,48),(1436,488),(1436,240),(1436,493),(1436,60),(1436,112),(1436,124),(1436,95),(1436,398),(1436,337),(1436,274),(1436,52),(1436,313),(1436,40),(1436,388),(1436,197),(1436,385),(1436,112),(1436,161),(1436,408),(1436,221),(1436,53),(1436,473),(1436,235),(1437,384),(1437,244),(1437,318),(1437,474),(1437,295),(1437,122),(1437,230),(1437,13),(1437,352),(1437,93),(1437,103),(1437,442),(1437,111),(1437,17),(1437,13),(1437,138),(1437,495),(1437,483),(1437,473),(1437,91),(1437,170),(1437,203),(1437,51),(1440,66),(1440,395),(1440,209),(1440,211),(1440,160),(1440,260),(1440,157),(1440,224),(1440,37),(1440,91),(1440,38),(1440,414),(1440,401),(1440,185),(1440,131),(1440,157),(1440,197),(1440,246),(1440,369),(1440,177),(1440,192),(1441,307),(1441,186),(1441,161),(1441,169),(1441,350),(1441,369),(1441,441),(1441,371),(1441,153),(1441,392),(1441,138),(1441,206),(1441,443),(1441,23),(1441,247),(1441,4),(1441,100),(1441,308),(1441,477),(1441,448),(1441,350),(1441,105),(1441,25),(1441,86),(1441,234),(1441,229),(1441,308),(1441,287),(1442,165),(1442,202),(1442,79),(1442,7),(1442,187),(1442,111),(1442,137),(1442,226),(1442,52),(1442,448),(1442,391),(1442,278),(1442,377),(1442,315),(1442,492),(1442,0),(1442,296),(1442,246),(1442,97),(1442,143),(1442,11),(1442,56),(1442,222),(1442,339),(1442,322),(1442,430),(1442,420),(1443,89),(1443,9),(1443,314),(1443,467),(1443,269),(1443,230),(1443,318),(1443,338),(1443,407),(1443,271),(1443,390),(1443,357),(1443,390),(1443,185),(1443,161),(1443,264),(1443,318),(1443,108),(1443,31),(1445,227),(1445,274),(1445,94),(1445,235),(1445,454),(1445,485),(1445,200),(1445,375),(1445,118),(1445,124),(1445,114),(1445,198),(1445,410),(1445,430),(1445,472),(1445,220),(1445,375),(1445,168),(1445,197),(1445,4),(1445,115),(1445,428),(1445,355),(1445,222),(1445,232),(1445,257),(1445,66),(1445,340),(1445,260),(1446,353),(1446,307),(1446,178),(1446,160),(1446,374),(1446,205),(1446,134),(1446,159),(1446,222),(1446,263),(1446,37),(1446,43),(1446,373),(1446,44),(1446,54),(1446,299),(1446,380),(1446,451),(1446,104),(1446,306),(1446,21),(1446,452),(1447,277),(1447,309),(1447,191),(1447,305),(1447,385),(1447,81),(1447,151),(1447,185),(1447,2),(1447,159),(1447,39),(1447,390),(1447,67),(1447,127),(1447,9),(1447,448),(1447,200),(1447,187),(1447,181),(1447,205),(1449,392),(1449,460),(1449,392),(1449,377),(1449,178),(1449,142),(1449,402),(1449,184),(1449,335),(1449,303),(1449,251),(1449,245),(1449,460),(1450,105),(1450,146),(1451,167),(1451,399),(1451,345),(1451,178),(1451,405),(1451,98),(1451,456),(1451,460),(1451,72),(1451,258),(1451,448),(1451,269),(1451,463),(1451,479),(1451,373),(1451,182),(1451,45),(1451,29),(1451,149),(1451,24),(1451,27),(1451,115),(1451,138),(1451,102),(1451,308),(1451,321),(1451,363),(1452,241),(1452,318),(1452,343),(1452,189),(1452,87),(1452,368),(1452,294),(1452,211),(1452,250),(1452,338),(1452,40),(1452,56),(1452,14),(1452,71),(1452,401),(1452,354),(1452,68),(1452,250),(1452,464),(1452,327),(1452,202),(1452,455),(1453,460),(1453,96),(1453,278),(1453,64),(1453,40),(1453,410),(1453,342),(1453,314),(1453,342),(1453,47),(1453,265),(1453,378),(1453,399),(1453,400),(1453,270),(1453,412),(1453,447),(1453,233),(1453,354),(1453,375),(1453,271),(1453,466),(1453,328),(1454,435),(1454,415),(1454,45),(1454,33),(1454,166),(1454,265),(1455,39),(1455,298),(1455,143),(1455,39),(1455,267),(1455,201),(1455,62),(1455,378),(1455,258),(1455,58),(1455,258),(1455,280),(1455,264),(1455,75),(1455,152),(1455,76),(1455,482),(1455,255),(1455,24),(1455,278),(1455,391),(1455,442),(1455,219),(1455,272),(1455,397),(1455,169),(1455,113),(1456,95),(1456,307),(1456,115),(1456,71),(1456,238),(1456,490),(1456,495),(1456,188),(1456,80),(1456,54),(1456,20),(1456,380),(1456,449),(1456,54),(1456,77),(1456,55),(1456,79),(1456,124),(1456,244),(1456,266),(1456,112),(1457,293),(1457,205),(1457,200),(1457,487),(1457,425),(1457,273),(1457,449),(1457,95),(1457,169),(1457,316),(1457,145),(1457,132),(1457,181),(1457,190),(1457,331),(1457,483),(1457,272),(1457,442),(1457,14),(1457,86),(1457,346),(1457,474),(1457,118),(1457,95),(1457,325),(1457,169),(1457,28),(1457,171),(1457,229),(1458,33),(1458,88),(1458,150),(1458,169),(1458,217),(1458,211),(1458,425),(1458,134),(1458,20),(1458,350),(1458,40),(1458,31),(1458,475),(1459,85),(1459,405),(1459,105),(1459,387),(1459,63),(1459,425),(1459,413),(1459,126),(1459,135),(1459,96),(1459,369),(1459,290),(1459,258),(1459,118),(1459,80),(1459,134),(1459,364),(1459,356),(1459,494),(1459,366),(1459,123),(1459,436),(1459,409),(1459,456),(1460,371),(1461,137),(1461,293),(1461,128),(1461,181),(1461,285),(1461,176),(1461,241),(1461,228),(1461,191),(1461,278),(1461,87),(1461,365),(1461,129),(1462,234),(1462,380),(1462,154),(1462,130),(1462,114),(1462,411),(1462,61),(1462,191),(1462,212),(1462,492),(1462,476),(1462,443),(1462,372),(1462,423),(1462,334),(1462,194),(1462,229),(1462,365),(1462,181),(1462,127),(1463,110),(1463,347),(1463,207),(1463,495),(1463,264),(1463,293),(1463,425),(1463,331),(1463,102),(1463,174),(1463,363),(1463,22),(1463,116),(1463,278),(1463,238),(1463,390),(1463,415),(1463,7),(1463,379),(1463,332),(1463,112),(1463,60),(1463,378),(1463,134),(1463,335),(1463,296),(1463,231),(1463,165),(1463,477),(1466,0),(1466,118),(1466,409),(1466,100),(1466,391),(1466,78),(1466,60),(1466,82),(1466,171),(1466,418),(1466,463),(1466,436),(1466,343),(1466,374),(1466,205),(1466,258),(1466,30),(1466,176),(1466,82),(1466,86),(1466,202),(1466,79),(1466,362),(1466,430),(1467,295),(1467,323),(1467,76),(1467,360),(1467,254),(1467,148),(1467,21),(1467,50),(1467,109),(1467,202),(1467,39),(1467,98),(1467,316),(1467,159),(1467,54),(1467,87),(1467,277),(1467,223),(1467,350),(1467,165),(1467,433),(1467,251),(1467,192),(1467,125),(1467,93),(1467,71),(1468,149),(1468,323),(1468,174),(1468,108),(1468,243),(1468,282),(1468,83),(1468,487),(1468,334),(1468,383),(1468,145),(1468,381),(1468,192),(1468,263),(1468,302),(1468,38),(1468,102),(1468,100),(1468,170),(1468,463),(1468,254),(1468,54),(1468,325),(1468,186),(1468,346),(1468,262),(1468,193),(1468,157),(1468,209),(1470,80),(1470,499),(1470,111),(1470,415),(1470,306),(1470,113),(1470,292),(1474,413),(1474,210),(1474,293),(1474,7),(1474,469),(1474,309),(1474,234),(1474,107),(1474,478),(1474,440),(1474,377),(1474,288),(1474,94),(1474,426),(1475,129),(1475,440),(1475,452),(1475,194),(1475,80),(1475,207),(1475,16),(1475,172),(1475,409),(1475,40),(1475,436),(1475,28),(1475,369),(1475,326),(1475,106),(1475,80),(1475,127),(1476,27),(1476,46),(1476,457),(1476,148),(1476,86),(1476,48),(1476,402),(1476,56),(1476,392),(1476,135),(1476,71),(1476,151),(1476,223),(1476,66),(1476,287),(1476,223),(1476,315),(1476,482),(1476,199),(1476,375),(1476,354),(1476,26),(1476,140),(1476,179),(1476,234),(1476,471),(1476,73),(1477,497),(1479,427),(1479,143),(1479,312),(1479,19),(1479,254),(1480,395),(1480,57),(1480,32),(1480,51),(1480,345),(1480,65),(1480,270),(1480,365),(1480,310),(1480,106),(1480,302),(1480,39),(1480,109),(1480,184),(1480,499),(1480,48),(1480,12),(1480,424),(1480,12),(1480,133),(1480,43),(1480,334),(1481,499),(1481,406),(1481,320),(1481,432),(1481,497),(1481,135),(1481,143),(1481,346),(1481,393),(1481,230),(1481,323),(1481,431),(1481,485),(1481,392),(1481,493),(1481,194),(1481,347),(1481,450),(1481,87),(1481,425),(1481,338),(1481,210),(1481,116),(1481,219),(1481,433),(1482,497),(1482,448),(1482,209),(1482,104),(1482,386),(1482,487),(1482,498),(1482,252),(1482,116),(1482,188),(1482,376),(1482,211),(1482,481),(1482,449),(1482,332),(1482,372),(1482,115),(1482,344),(1482,295),(1483,338),(1483,152),(1483,292),(1483,310),(1483,487),(1483,257),(1483,236),(1483,43),(1483,459),(1483,179),(1483,125),(1484,62),(1484,340),(1484,450),(1484,44),(1484,43),(1484,287),(1484,246),(1484,359),(1484,84),(1484,425),(1484,276),(1484,35),(1484,187),(1484,261),(1484,195),(1484,3),(1484,38),(1484,265),(1484,263),(1484,141),(1484,4),(1484,330),(1484,475),(1484,261),(1484,314),(1484,59),(1484,209),(1484,331),(1484,405),(1486,168),(1486,323),(1486,12),(1486,92),(1486,429),(1486,62),(1486,284),(1486,402),(1486,172),(1486,310),(1486,94),(1486,138),(1486,497),(1486,126),(1486,13),(1486,459),(1486,122),(1487,359),(1487,199),(1487,256),(1487,193),(1487,56),(1487,206),(1487,22),(1487,440),(1487,344),(1487,333),(1487,165),(1487,247),(1487,202),(1487,318),(1487,440),(1487,451),(1487,325),(1487,290),(1487,271),(1487,344),(1487,135),(1487,58),(1487,486),(1487,57),(1487,367),(1487,227),(1487,162),(1487,226),(1487,210),(1488,233),(1489,399),(1489,230),(1489,141),(1489,245),(1489,430),(1489,313),(1489,255),(1489,90),(1489,276),(1489,200),(1489,227),(1489,32),(1489,182),(1489,314),(1489,216),(1489,231),(1489,51),(1489,342),(1489,180),(1489,222),(1489,274),(1492,488),(1492,391),(1492,490),(1492,239),(1492,23),(1492,260),(1492,491),(1492,481),(1492,127),(1492,294),(1492,150),(1493,161),(1493,475),(1493,180),(1493,442),(1493,46),(1493,340),(1493,72),(1493,233),(1493,78),(1493,58),(1493,174),(1493,138),(1493,284),(1493,256),(1493,141),(1493,86),(1493,446),(1493,416),(1493,107),(1493,78),(1493,250),(1495,140),(1495,70),(1495,407),(1495,83),(1495,389),(1495,294),(1495,73),(1495,27),(1495,244),(1495,364),(1495,166),(1495,485),(1495,102),(1495,498),(1495,398),(1495,226),(1495,201),(1495,183),(1495,279),(1495,370),(1495,101),(1495,162),(1495,373),(1495,166),(1495,103),(1495,320),(1495,400),(1495,426),(1495,191),(1496,20),(1496,344),(1496,443),(1496,340),(1496,437),(1496,64),(1496,155),(1496,111),(1496,129),(1496,87),(1496,77),(1496,59),(1496,446),(1496,261),(1496,191),(1496,230),(1496,332),(1496,352),(1496,139),(1496,321),(1497,154),(1497,190),(1497,130),(1497,322),(1497,76),(1497,263),(1497,437),(1497,349),(1497,207),(1497,494),(1497,178),(1497,334),(1497,402),(1497,148),(1497,13),(1497,262),(1498,1),(1499,487),(1499,161),(1499,461),(1499,124),(1500,225),(1500,311),(1500,433),(1500,358),(1500,221),(1500,357),(1500,199),(1500,259),(1500,446),(1500,494),(1503,21),(1503,235),(1503,152),(1503,484),(1503,53),(1503,432),(1503,138),(1503,204),(1503,106),(1503,414),(1503,367),(1503,135),(1503,189),(1503,111),(1503,412),(1505,454),(1505,190),(1505,475),(1505,123),(1505,221),(1505,416),(1505,262),(1505,42),(1505,33),(1505,5),(1505,96),(1505,423),(1505,89),(1505,127),(1505,453),(1505,278),(1505,404),(1505,330),(1505,454),(1505,90),(1505,219),(1505,79),(1505,374),(1507,329),(1507,380),(1507,4),(1507,121),(1507,134),(1507,120),(1507,464),(1507,77),(1508,23),(1508,294),(1508,198),(1508,387),(1508,414),(1508,315),(1508,191),(1508,58),(1508,95),(1508,197),(1508,81),(1508,250),(1508,410),(1508,444),(1508,322),(1508,413),(1508,246),(1508,92),(1508,486),(1508,29),(1508,483),(1508,378),(1508,199),(1509,308),(1509,58),(1509,323),(1509,273),(1509,194),(1510,470),(1511,375),(1511,68),(1511,499),(1511,324),(1511,45),(1511,307),(1511,103),(1511,255),(1511,382),(1512,36),(1512,396),(1512,180),(1512,342),(1512,319),(1512,294),(1512,352),(1512,150),(1512,378),(1512,45),(1512,348),(1512,458),(1512,107),(1512,294),(1512,464),(1512,137),(1512,491),(1512,209),(1512,297),(1512,229),(1512,337),(1512,153),(1512,376),(1512,203),(1512,87),(1512,445),(1512,192),(1512,11),(1512,185),(1515,126),(1515,181),(1515,281),(1515,201),(1515,27),(1516,471),(1516,306),(1516,487),(1516,204),(1516,265),(1516,343),(1516,206),(1516,212),(1516,217),(1516,363),(1516,20),(1516,152),(1516,208),(1516,308),(1516,87),(1516,212),(1516,102),(1516,25),(1516,16),(1516,129),(1516,357),(1516,159),(1516,38),(1517,315),(1517,201),(1517,451),(1517,485),(1517,390),(1517,487),(1517,49),(1517,290),(1517,3),(1517,134),(1517,208),(1517,76),(1517,434),(1520,390),(1520,408),(1521,152),(1521,133),(1521,61),(1521,268),(1521,131),(1521,30),(1521,356),(1521,448),(1521,177),(1521,122),(1522,158),(1522,322),(1522,165),(1522,413),(1522,140),(1522,158),(1524,221),(1524,374),(1524,454),(1524,321),(1524,461),(1524,87),(1524,330),(1524,311),(1524,172),(1524,464),(1524,378),(1524,21),(1524,354),(1524,317),(1524,414),(1524,303),(1524,209),(1524,162),(1524,241),(1524,60),(1524,145),(1525,330),(1525,368),(1526,346),(1531,211),(1531,195),(1531,250),(1531,4),(1531,490),(1531,26),(1531,7),(1531,250),(1531,198),(1531,90),(1531,327),(1531,471),(1531,104),(1531,282),(1531,467),(1531,474),(1531,149),(1531,110),(1531,443),(1531,408),(1531,452),(1531,197),(1531,69),(1531,72),(1531,353),(1531,58),(1531,167),(1531,416),(1532,31),(1532,121),(1532,101),(1532,451),(1532,107),(1532,163),(1532,476),(1532,14),(1532,235),(1532,330),(1532,313),(1532,221),(1532,359),(1532,342),(1532,160),(1532,98),(1532,289),(1532,498),(1532,281),(1532,124),(1532,349),(1532,83),(1532,316),(1532,337),(1532,248),(1532,102),(1532,253),(1532,66),(1532,465),(1533,329),(1533,78),(1533,305),(1533,350),(1533,20),(1534,69),(1534,388),(1534,470),(1534,83),(1534,276),(1534,288),(1534,139),(1534,269),(1534,90),(1534,115),(1534,156),(1534,428),(1534,19),(1534,178),(1534,50),(1534,233),(1534,228),(1534,336),(1534,164),(1534,407),(1534,444),(1534,222),(1534,457),(1534,499),(1534,443),(1534,227),(1534,405),(1534,458),(1534,394),(1535,327),(1535,7),(1535,252),(1535,433),(1535,396),(1535,253),(1535,359),(1535,245),(1535,475),(1535,175),(1535,476),(1535,406),(1535,383),(1535,249),(1535,156),(1535,155),(1535,453),(1535,240),(1535,442),(1535,145),(1535,402),(1535,265),(1535,377),(1535,330),(1535,386),(1535,187),(1535,266),(1535,167),(1535,153),(1537,154),(1537,401),(1537,454),(1537,284),(1537,219),(1537,176),(1537,253),(1537,496),(1537,234),(1537,6),(1537,483),(1537,325),(1537,312),(1537,191),(1538,143),(1538,403),(1538,82),(1538,411),(1538,487),(1538,275),(1538,352),(1538,315),(1538,258),(1538,264),(1538,112),(1538,260),(1538,249),(1538,491),(1538,338),(1538,471),(1538,404),(1538,161),(1538,378),(1538,311),(1538,243),(1538,492),(1538,349),(1538,272),(1538,139),(1538,368),(1538,110),(1538,100),(1538,226),(1541,329),(1541,367),(1541,413),(1541,480),(1541,284),(1541,310),(1541,360),(1541,273),(1541,87),(1541,379),(1541,389),(1541,30),(1541,81),(1541,496),(1541,493),(1541,315),(1541,97),(1541,297),(1541,464),(1541,338),(1541,472),(1541,209),(1541,330),(1541,0),(1541,429),(1541,397),(1542,121),(1542,115),(1542,179),(1542,406),(1542,22),(1542,284),(1542,58),(1542,17),(1542,58),(1542,254),(1542,247),(1542,234),(1542,43),(1542,46),(1542,377),(1542,288),(1542,341),(1542,179),(1542,131),(1542,280),(1542,276),(1542,346),(1542,325),(1542,116),(1542,454),(1542,471),(1543,86),(1543,160),(1543,307),(1543,142),(1543,71),(1543,29),(1543,479),(1543,244),(1543,151),(1543,408),(1543,38),(1543,343),(1543,280),(1543,276),(1544,447),(1544,209),(1544,217),(1545,163),(1545,385),(1545,454),(1545,308),(1545,286),(1549,359),(1549,192),(1549,131),(1549,46),(1549,463),(1549,284),(1549,241),(1549,66),(1549,51),(1549,71),(1549,454),(1549,40),(1550,236),(1550,499),(1550,183),(1550,374),(1550,376),(1550,23),(1550,188),(1551,439),(1551,63),(1551,449),(1551,274),(1551,205),(1551,220),(1551,7),(1551,100),(1551,387),(1551,260),(1551,494),(1551,467),(1551,248),(1551,35),(1551,335),(1551,426),(1551,484),(1551,307),(1551,231),(1551,425),(1551,10),(1551,68),(1551,287),(1551,227),(1551,464),(1552,65),(1552,225),(1552,22),(1552,206),(1552,73),(1552,106),(1552,397),(1552,317),(1552,368),(1552,140),(1552,186),(1552,60),(1552,376),(1552,158),(1552,153),(1552,46),(1552,407),(1552,287),(1552,364),(1552,95),(1552,35),(1552,454),(1552,465),(1552,383),(1552,388),(1552,179),(1554,261),(1554,197),(1554,109),(1554,263),(1554,391),(1554,236),(1554,71),(1554,165),(1556,172),(1556,47),(1556,356),(1556,143),(1556,204),(1556,287),(1556,299),(1556,37),(1556,373),(1556,216),(1556,334),(1556,427),(1556,303),(1556,273),(1556,237),(1557,35),(1557,210),(1557,454),(1557,229),(1557,141),(1557,214),(1557,4),(1557,374),(1557,458),(1557,432),(1557,50),(1557,15),(1557,59),(1557,371),(1558,466),(1558,216),(1558,126),(1558,38),(1558,376),(1558,265),(1558,367),(1558,474),(1558,10),(1558,226),(1558,43),(1558,17),(1558,78),(1558,155),(1558,124),(1558,124),(1558,172),(1558,356),(1558,59),(1558,120),(1558,247),(1558,450),(1558,414),(1558,347),(1558,168),(1558,319),(1558,88),(1558,449),(1559,149),(1559,304),(1559,421),(1559,74),(1559,195),(1559,473),(1559,371),(1559,124),(1559,332),(1559,483),(1559,262),(1559,392),(1561,159),(1561,207),(1561,237),(1561,424),(1561,209),(1561,171),(1561,193),(1561,257),(1561,348),(1561,432),(1561,225),(1561,70),(1561,454),(1561,17),(1561,94),(1561,328),(1561,238),(1561,184),(1561,291),(1561,209),(1561,427),(1561,196),(1561,451),(1561,108),(1561,301),(1561,203),(1562,6),(1562,228),(1562,314),(1562,143),(1563,220),(1563,387),(1564,127),(1564,48),(1564,249),(1564,404),(1564,333),(1564,499),(1564,465),(1564,310),(1564,260),(1564,171),(1564,53),(1564,395),(1564,265),(1564,478),(1564,355),(1564,344),(1564,318),(1567,440),(1567,184),(1567,99),(1567,101),(1567,494),(1567,107),(1567,346),(1567,146),(1567,204),(1567,280),(1567,490),(1567,1),(1567,403),(1567,190),(1567,435),(1567,425),(1569,405),(1569,61),(1569,395),(1569,409),(1569,245),(1569,478),(1569,162),(1569,11),(1569,322),(1569,416),(1569,264),(1569,347),(1571,45),(1571,205),(1571,179),(1571,199),(1571,452),(1571,417),(1571,222),(1571,333),(1571,495),(1571,222),(1571,20),(1571,266),(1571,5),(1571,99),(1574,244),(1574,276),(1574,412),(1574,451),(1574,320),(1574,257),(1574,226),(1574,231),(1574,277),(1574,148),(1574,163),(1576,319),(1576,3),(1576,178),(1576,67),(1576,221),(1578,9),(1578,400),(1578,473),(1578,241),(1580,338),(1580,213),(1580,304),(1580,314),(1580,406),(1580,186),(1580,116),(1580,92),(1580,345),(1580,354),(1580,15),(1580,285),(1580,443),(1580,371),(1580,326),(1580,496),(1580,296),(1580,191),(1580,1),(1580,179),(1581,273),(1581,187),(1581,494),(1581,398),(1581,460),(1581,269),(1581,226),(1581,471),(1581,250),(1581,190),(1581,385),(1581,218),(1581,119),(1581,30),(1581,300),(1581,414),(1581,219),(1581,175),(1581,72),(1581,1),(1581,252),(1582,106),(1583,63),(1583,278),(1583,356),(1583,63),(1583,123),(1583,425),(1583,333),(1583,38),(1583,181),(1583,147),(1583,167),(1583,333),(1583,346),(1583,240),(1583,442),(1583,212),(1583,256),(1583,195),(1583,105),(1583,365),(1583,475),(1583,60),(1583,216),(1583,259),(1586,206),(1586,434),(1586,81),(1586,102),(1586,494),(1586,202),(1586,483),(1586,295),(1586,434),(1586,74),(1586,134),(1586,121),(1586,350),(1586,385),(1586,165),(1586,276),(1586,392),(1586,268),(1586,410),(1586,286),(1586,338),(1586,58),(1586,170),(1586,66),(1586,214),(1586,387),(1589,422),(1589,466),(1589,30),(1589,132),(1589,137),(1589,494),(1589,7),(1589,459),(1589,94),(1589,122),(1589,443),(1589,251),(1589,191),(1589,7),(1590,163),(1590,466),(1590,314),(1590,5),(1590,59),(1590,243),(1590,419),(1590,442),(1590,208),(1590,451),(1590,94),(1590,279),(1590,275),(1590,82),(1590,194),(1590,494),(1590,428),(1590,235),(1590,354),(1590,53),(1590,369),(1593,384),(1593,386),(1593,13),(1593,494),(1593,94),(1593,361),(1594,160),(1594,186),(1594,43),(1594,259),(1594,31),(1594,250),(1594,423),(1594,428),(1594,83),(1594,291),(1594,201),(1594,136),(1594,19),(1594,71),(1594,2),(1594,73),(1594,12),(1594,96),(1594,487),(1594,18),(1594,82),(1594,142),(1594,401),(1594,173),(1594,238),(1594,289),(1595,360),(1595,446),(1595,106),(1595,61),(1595,434),(1595,129),(1595,80),(1595,456),(1595,249),(1595,190),(1595,75),(1595,226),(1595,402),(1595,263),(1596,330),(1596,92),(1596,37),(1596,168),(1596,485),(1596,123),(1596,270),(1596,172),(1596,463),(1596,250),(1596,210),(1596,432),(1596,456),(1596,249),(1596,68),(1596,309),(1596,449),(1596,195),(1596,354),(1596,34),(1596,426),(1596,21),(1596,135),(1596,363),(1596,431),(1596,126),(1596,198),(1596,121),(1596,238),(1598,375),(1598,440),(1598,157),(1599,38),(1599,274),(1600,131),(1600,412),(1600,179),(1600,454),(1600,1),(1600,245),(1600,388),(1600,60),(1600,352),(1600,128),(1600,454),(1600,278),(1600,326),(1600,231),(1600,260),(1600,158),(1600,457),(1600,180),(1600,487),(1600,81),(1600,190),(1600,21),(1600,134),(1600,279),(1600,110),(1601,343),(1601,253),(1602,10),(1602,99),(1602,34),(1602,400),(1602,183),(1602,249),(1602,254),(1602,31),(1602,281),(1602,55),(1602,120),(1602,461),(1602,231),(1602,140),(1602,188),(1602,32),(1602,369),(1602,261),(1602,444),(1602,432),(1602,202),(1602,324),(1602,434),(1602,332),(1602,41),(1602,367),(1602,52),(1602,129),(1602,47),(1603,195),(1603,31),(1603,65),(1603,102),(1603,274),(1603,247),(1603,378),(1603,360),(1603,247),(1603,120),(1603,254),(1603,360),(1603,447),(1603,219),(1603,200),(1603,44),(1603,355),(1603,452),(1603,123),(1603,196),(1603,59),(1603,55),(1603,381),(1603,446),(1603,164),(1603,229),(1603,444),(1603,365),(1603,14),(1604,254),(1604,162),(1605,404),(1606,331),(1606,90),(1606,50),(1606,335),(1606,111),(1606,128),(1606,499),(1606,116),(1606,312),(1606,445),(1606,189),(1606,328),(1606,486),(1606,303),(1606,133),(1606,56),(1606,284),(1606,285),(1606,108),(1606,335),(1606,281),(1606,452),(1606,418),(1606,380),(1606,13),(1606,23),(1607,34),(1607,66),(1607,26),(1607,430),(1608,69),(1608,382),(1608,380),(1608,493),(1608,463),(1608,464),(1608,170),(1608,425),(1608,474),(1608,68),(1608,184),(1608,279),(1608,465),(1608,329),(1608,203),(1608,478),(1608,33),(1608,126),(1608,81),(1608,94),(1608,22),(1608,484),(1608,158),(1608,51),(1609,196),(1609,414),(1609,317),(1609,80),(1609,429),(1609,377),(1609,328),(1609,242),(1609,266),(1610,48),(1610,50),(1611,209),(1611,119),(1611,56),(1611,34),(1611,246),(1611,64),(1611,472),(1611,387),(1611,373),(1611,8),(1611,280),(1611,288),(1611,121),(1611,473),(1611,469),(1612,300),(1612,402),(1612,252),(1612,112),(1612,312),(1612,308),(1612,417),(1612,280),(1612,59),(1612,92),(1612,158),(1612,444),(1612,468),(1612,348),(1612,100),(1612,144),(1612,248),(1612,434),(1612,398),(1612,321),(1612,351),(1612,70),(1612,477),(1612,411),(1612,204),(1612,110),(1612,192),(1612,258),(1612,263),(1613,95),(1613,187),(1613,455),(1613,86),(1613,366),(1613,421),(1613,196),(1613,12),(1613,32),(1613,499),(1613,65),(1613,402),(1613,324),(1613,309),(1613,17),(1613,286),(1613,217),(1613,246),(1613,405),(1613,230),(1613,100),(1613,213),(1614,390),(1615,342),(1615,372),(1615,330),(1615,464),(1615,239),(1615,198),(1615,314),(1615,108),(1615,118),(1615,243),(1615,457),(1615,490),(1615,132),(1616,192),(1616,344),(1616,118),(1616,123),(1616,158),(1616,97),(1616,22),(1616,270),(1616,435),(1617,294),(1617,402),(1617,465),(1617,40),(1617,125),(1617,498),(1617,222),(1617,426),(1617,101),(1617,180),(1617,5),(1617,479),(1617,190),(1617,324),(1617,308),(1617,242),(1617,236),(1617,343),(1617,335),(1617,217),(1617,301),(1617,416),(1617,9),(1617,250),(1617,188),(1617,332),(1617,408),(1618,322),(1618,228),(1619,200),(1619,409),(1619,123),(1619,61),(1619,39),(1619,483),(1619,49),(1619,62),(1619,52),(1619,258),(1619,78),(1619,180),(1619,169),(1619,214),(1619,325),(1619,61),(1619,40),(1619,387),(1619,117),(1620,42),(1620,400),(1620,418),(1620,90),(1620,193),(1620,24),(1620,27),(1620,333),(1620,332),(1620,310),(1620,377),(1620,78),(1620,276),(1620,12),(1620,354),(1620,437),(1620,414),(1620,386),(1620,108),(1620,462),(1620,238),(1620,146),(1620,435),(1620,491),(1620,331),(1624,190),(1624,40),(1624,249),(1624,210),(1624,92),(1624,471),(1624,283),(1624,28),(1627,205),(1627,471),(1627,286),(1627,255),(1627,438),(1627,29),(1627,475),(1627,425),(1627,175),(1627,310),(1627,51),(1627,93),(1627,281),(1627,181),(1627,305),(1628,155),(1628,439),(1628,356),(1628,80),(1628,429),(1628,164),(1628,203),(1628,13),(1628,330),(1628,177),(1628,328),(1628,339),(1628,435),(1628,226),(1628,449),(1628,465),(1628,116),(1628,158),(1628,365),(1628,490),(1628,80),(1628,238),(1628,332),(1628,349),(1628,119),(1628,105),(1628,30),(1628,358),(1628,41),(1629,459),(1629,41),(1629,194),(1629,44),(1629,403),(1630,479),(1631,126),(1631,201),(1631,3),(1631,452),(1632,278),(1632,131),(1632,164),(1632,60),(1632,406),(1632,442),(1632,324),(1634,263),(1634,2),(1634,52),(1634,498),(1634,59),(1634,34),(1634,218),(1634,325),(1634,152),(1634,3),(1634,403),(1634,414),(1634,54),(1634,285),(1634,256),(1634,172),(1635,481),(1636,104),(1636,220),(1636,239),(1636,216),(1636,188),(1636,132),(1636,242),(1636,39),(1636,341),(1637,216),(1637,58),(1637,455),(1637,27),(1637,126),(1637,44),(1637,251),(1637,453),(1637,98),(1637,271),(1637,200),(1637,400),(1637,101),(1637,161),(1637,195),(1637,25),(1637,235),(1637,441),(1637,226),(1637,35),(1637,74),(1637,45),(1637,362),(1637,279),(1637,323),(1637,77),(1637,201),(1637,312),(1637,405),(1638,379),(1638,162),(1638,308),(1638,258),(1638,492),(1638,65),(1638,112),(1638,447),(1638,103),(1638,169),(1638,410),(1638,276),(1638,124),(1638,22),(1638,474),(1638,53),(1638,391),(1638,428),(1638,383),(1638,464),(1638,476),(1638,371),(1638,148),(1638,441),(1638,161),(1638,468),(1638,69),(1638,339),(1639,15),(1639,49),(1640,323),(1640,333),(1640,208),(1640,429),(1640,135),(1640,10),(1640,41),(1640,259),(1640,339),(1640,147),(1640,349),(1640,398),(1640,11),(1640,191),(1640,44),(1640,224),(1640,109),(1640,413),(1640,1),(1640,128),(1640,28),(1640,491),(1640,367),(1640,223),(1640,200),(1640,265),(1640,437),(1640,392),(1640,437),(1643,33),(1643,128),(1643,293),(1643,123),(1643,210),(1643,78),(1643,339),(1643,412),(1643,115),(1643,203),(1643,268),(1643,18),(1643,206),(1643,410),(1643,340),(1643,183),(1643,179),(1643,458),(1643,362),(1643,380),(1643,492),(1643,358),(1643,221),(1643,256),(1643,189),(1643,305),(1643,179),(1643,96),(1643,3),(1644,380),(1644,263),(1644,119),(1644,419),(1644,327),(1644,116),(1644,6),(1644,332),(1644,185),(1644,31),(1644,178),(1644,223),(1644,482),(1644,79),(1644,187),(1644,91),(1644,190),(1644,83),(1644,233),(1644,333),(1644,68),(1644,443),(1644,148),(1644,408),(1644,222),(1645,114),(1645,368),(1645,444),(1645,82),(1645,89),(1645,386),(1645,394),(1645,284),(1645,230),(1645,346),(1645,302),(1645,272),(1645,97),(1645,297),(1645,295),(1645,136),(1645,499),(1645,4),(1645,303),(1645,403),(1646,54),(1646,113),(1649,219),(1649,481),(1649,235),(1649,435),(1649,96),(1649,105),(1649,41),(1649,134),(1649,51),(1649,155),(1649,94),(1649,41),(1649,142),(1649,111),(1649,174),(1649,422),(1649,260),(1649,68),(1649,407),(1649,190),(1649,347),(1649,34),(1649,46),(1649,481),(1649,365),(1649,241),(1649,252),(1649,196),(1649,160),(1651,23),(1651,199),(1651,46),(1651,107),(1652,248),(1652,80),(1652,180),(1652,448),(1652,175),(1652,38),(1652,149),(1652,201),(1652,346),(1652,159),(1652,129),(1652,230),(1652,346),(1652,29),(1652,270),(1652,17),(1652,286),(1652,145),(1652,466),(1652,106),(1652,487),(1652,275),(1652,141),(1652,92),(1652,451),(1652,225),(1652,458),(1652,312),(1653,58),(1653,8),(1653,172),(1653,226),(1653,347),(1653,487),(1653,365),(1653,207),(1653,212),(1653,369),(1653,47),(1653,466),(1653,329),(1653,191),(1653,433),(1653,334),(1653,318),(1653,231),(1653,270),(1653,270),(1653,28),(1653,409),(1653,108),(1654,359),(1654,243),(1654,263),(1654,158),(1654,468),(1654,278),(1654,479),(1654,490),(1654,74),(1654,216),(1654,132),(1654,452),(1654,370),(1654,33),(1654,202),(1654,18),(1655,284),(1655,359),(1655,379),(1656,13),(1656,381),(1656,384),(1656,233),(1656,346),(1656,498),(1656,494),(1656,332),(1656,258),(1656,408),(1656,106),(1656,215),(1656,324),(1656,370),(1656,183),(1656,252),(1656,195),(1656,36),(1656,446),(1656,80),(1656,307),(1656,259),(1656,460),(1656,237),(1656,402),(1656,364),(1656,402),(1656,364),(1657,17),(1657,373),(1657,303),(1657,274),(1657,39),(1657,283),(1657,372),(1657,224),(1657,478),(1657,156),(1657,452),(1657,11),(1657,413),(1657,37),(1657,362),(1657,227),(1657,81),(1657,292),(1657,216),(1657,372),(1657,85),(1657,303),(1657,76),(1657,286),(1657,85),(1658,258),(1658,367),(1658,185),(1658,425),(1660,298),(1660,221),(1660,111),(1660,245),(1660,494),(1660,405),(1660,191),(1660,63),(1660,255),(1660,297),(1660,110),(1660,56),(1660,469),(1660,420),(1660,10),(1660,473),(1660,365),(1660,437),(1660,200),(1660,332),(1660,469),(1660,177),(1660,185),(1660,342),(1660,77),(1660,15),(1660,105),(1660,81),(1660,35),(1662,383),(1662,225),(1662,71),(1662,215),(1662,191),(1662,299),(1663,234),(1663,426),(1663,290),(1663,289),(1663,136),(1663,103),(1663,187),(1663,423),(1663,174),(1663,426),(1663,457),(1663,31),(1663,43),(1664,363),(1664,317),(1664,56),(1664,465),(1664,438),(1664,470),(1664,285),(1664,62),(1664,449),(1664,45),(1664,442),(1664,470),(1664,212),(1664,415),(1664,198),(1664,352),(1664,389),(1664,139),(1664,263),(1664,21),(1664,470),(1664,195),(1664,186),(1664,14),(1664,432),(1664,457),(1664,258),(1664,262),(1664,247),(1665,391),(1665,419),(1666,114),(1667,190),(1667,391),(1667,66),(1667,167),(1667,180),(1667,20),(1667,138),(1667,26),(1667,460),(1667,261),(1667,374),(1667,118),(1667,274),(1667,334),(1667,321),(1667,50),(1667,218),(1667,230),(1667,278),(1667,144),(1667,283),(1667,186),(1667,326),(1667,368),(1667,488),(1667,341),(1668,247),(1668,285),(1668,346),(1668,206),(1668,154),(1668,204),(1668,199),(1668,312),(1668,328),(1668,439),(1668,311),(1668,480),(1668,250),(1668,118),(1668,454),(1668,59),(1668,280),(1668,222),(1668,168),(1668,393),(1668,74),(1668,59),(1668,35),(1668,378),(1668,470),(1668,418),(1668,71),(1668,420),(1669,280),(1671,32),(1671,51),(1671,225),(1671,443),(1671,332),(1671,73),(1671,172),(1671,462),(1671,460),(1671,277),(1671,32),(1671,354),(1671,422),(1671,232),(1671,497),(1671,251),(1671,137),(1671,432),(1671,49),(1671,136),(1671,378),(1671,14),(1671,474),(1671,438),(1671,236),(1671,469),(1671,246),(1671,200),(1673,65),(1673,71),(1673,390),(1673,355),(1673,80),(1673,446),(1673,448),(1673,343),(1673,414),(1674,96),(1674,137),(1674,241),(1674,167),(1674,236),(1674,499),(1674,60),(1674,159),(1674,69),(1674,446),(1674,498),(1674,8),(1674,337),(1674,239),(1674,214),(1674,407),(1674,99),(1674,467),(1674,463),(1675,492),(1675,219),(1675,4),(1675,135),(1675,4),(1675,109),(1675,174),(1675,33),(1675,133),(1675,255),(1675,46),(1675,72),(1675,399),(1675,70),(1675,304),(1675,219),(1675,318),(1675,344),(1675,168),(1675,493),(1675,291),(1675,296),(1675,473),(1675,202),(1675,80),(1675,61),(1675,71),(1675,283),(1680,322),(1680,211),(1680,414),(1680,156),(1680,322),(1680,252),(1680,236),(1680,374),(1680,329),(1680,179),(1680,329),(1680,258),(1680,112),(1680,381),(1680,381),(1680,118),(1680,417),(1680,393),(1680,115),(1680,131),(1680,264),(1680,16),(1682,476),(1682,434),(1682,31),(1682,90),(1682,187),(1682,288),(1682,171),(1682,338),(1682,207),(1682,417),(1682,249),(1682,289),(1682,119),(1682,332),(1682,180),(1682,387),(1682,72),(1682,360),(1682,247),(1682,463),(1683,171),(1683,441),(1683,402),(1683,21),(1683,87),(1683,10),(1683,444),(1683,488),(1683,233),(1683,264),(1683,347),(1683,374),(1683,304),(1683,151),(1683,381),(1683,338),(1683,295),(1683,495),(1683,169),(1683,81),(1683,102),(1684,329),(1684,239),(1684,436),(1684,59),(1684,286),(1684,48),(1684,267),(1684,356),(1684,181),(1684,268),(1684,184),(1684,370),(1684,87),(1684,228),(1684,423),(1684,328),(1684,397),(1684,152),(1684,360),(1684,492),(1684,422),(1684,275),(1684,198),(1684,116),(1684,118),(1684,460),(1684,245),(1684,214),(1685,246),(1686,226),(1686,3),(1686,237),(1686,40),(1686,471),(1686,273),(1686,77),(1686,379),(1686,418),(1686,4),(1686,114),(1686,271),(1686,248),(1686,169),(1686,418),(1686,478),(1686,250),(1686,381),(1686,13),(1686,147),(1686,239),(1686,340),(1686,293),(1686,158),(1686,454),(1686,384),(1686,451),(1686,75),(1687,326),(1687,73),(1687,424),(1687,417),(1687,405),(1687,147),(1687,471),(1687,355),(1687,124),(1687,292),(1687,392),(1687,41),(1687,308),(1687,209),(1687,182),(1687,110),(1687,2),(1687,7),(1687,121),(1687,430),(1687,303),(1687,21),(1688,104),(1688,385),(1688,107),(1688,126),(1688,212),(1688,420),(1688,185),(1688,106),(1688,391),(1688,231),(1688,292),(1688,400),(1688,447),(1688,73),(1688,366),(1688,11),(1688,276),(1689,323),(1689,111),(1689,308),(1689,180),(1689,290),(1689,378),(1689,458),(1689,171),(1689,102),(1689,442),(1689,247),(1689,5),(1689,274),(1689,440),(1689,357),(1689,463),(1689,166),(1689,428),(1689,51),(1689,182),(1689,245),(1689,87),(1689,222),(1690,327),(1690,464),(1691,315),(1691,494),(1693,223),(1693,348),(1693,89),(1693,158),(1693,152),(1693,115),(1693,376),(1693,187),(1693,208),(1693,339),(1693,488),(1693,147),(1693,53),(1693,57),(1693,168),(1693,356),(1693,123),(1693,397),(1694,235),(1694,323),(1694,60),(1694,386),(1694,356),(1694,255),(1696,70),(1696,28),(1696,390),(1696,397),(1696,362),(1696,147),(1696,260),(1696,246),(1696,280),(1696,13),(1696,269),(1696,349),(1696,175),(1696,405),(1696,155),(1696,40),(1696,289),(1696,164),(1696,223),(1696,92),(1696,435),(1696,255),(1696,152),(1696,444),(1696,245),(1696,381),(1696,185),(1696,72),(1696,391),(1697,477),(1697,483),(1697,365),(1697,286),(1697,188),(1697,400),(1697,364),(1697,231),(1697,209),(1697,224),(1697,271),(1697,418),(1697,245),(1697,252),(1697,300),(1697,475),(1697,235),(1697,198),(1697,279),(1697,1),(1697,165),(1697,459),(1697,31),(1697,181),(1697,149),(1697,151),(1697,282),(1697,392),(1699,35),(1699,486),(1699,293),(1699,413),(1699,172),(1699,414),(1699,33),(1699,473),(1699,134),(1699,200),(1700,233),(1700,297),(1700,76),(1700,46),(1700,209),(1700,106),(1700,306),(1700,401),(1700,5),(1700,214),(1700,99),(1700,120),(1700,307),(1700,275),(1700,413),(1700,160),(1700,425),(1700,408),(1700,203),(1700,6),(1700,129),(1700,81),(1700,75),(1700,403),(1700,202),(1700,343),(1700,323),(1700,270),(1700,425),(1701,170),(1701,415),(1701,126),(1701,19),(1702,65),(1702,424),(1702,399),(1702,65),(1702,173),(1702,378),(1702,307),(1702,169),(1702,61),(1702,170),(1702,329),(1702,317),(1702,189),(1702,177),(1702,63),(1702,217),(1702,134),(1702,383),(1702,425),(1702,11),(1702,319),(1702,24),(1702,10),(1702,342),(1702,352),(1702,454),(1702,3),(1702,113),(1702,268),(1705,494),(1705,351),(1705,4),(1705,388),(1705,266),(1705,79),(1705,329),(1705,23),(1705,433),(1705,104),(1705,184),(1705,435),(1705,399),(1705,450),(1705,228),(1705,328),(1705,62),(1705,203),(1705,373),(1705,386),(1705,486),(1705,425),(1705,163),(1705,309),(1706,188),(1706,107),(1706,101),(1706,13),(1706,346),(1706,16),(1706,95),(1706,1),(1706,396),(1706,435),(1706,428),(1706,267),(1706,0),(1706,128),(1706,382),(1706,469),(1706,304),(1706,201),(1706,213),(1706,31),(1706,179),(1706,463),(1706,305),(1706,34),(1706,143),(1706,496),(1707,17),(1707,88),(1707,414),(1707,155),(1707,343),(1707,430),(1707,373),(1707,80),(1707,82),(1707,133),(1707,31),(1707,413),(1707,435),(1707,366),(1707,238),(1707,489),(1707,248),(1707,475),(1707,462),(1707,311),(1707,351),(1707,41),(1707,121),(1707,391),(1707,66),(1707,69),(1707,86),(1707,353),(1708,197),(1708,265),(1708,14),(1708,495),(1708,280),(1708,221),(1708,244),(1708,345),(1708,358),(1708,151),(1708,436),(1708,149),(1708,40),(1708,385),(1708,221),(1708,313),(1708,457),(1708,244),(1708,14),(1708,55),(1708,412),(1708,413),(1708,28),(1708,455),(1708,184),(1709,300),(1709,380),(1709,329),(1709,232),(1709,119),(1709,429),(1709,129),(1709,236),(1709,194),(1709,64),(1709,212),(1709,299),(1709,219),(1709,182),(1709,430),(1709,262),(1709,85),(1709,251),(1709,112),(1709,154),(1709,487),(1709,322),(1712,30),(1712,461),(1712,121),(1712,338),(1712,432),(1712,54),(1712,473),(1712,317),(1712,149),(1712,22),(1712,50),(1712,389),(1712,340),(1712,201),(1714,97),(1714,85),(1714,486),(1714,93),(1715,246),(1715,173),(1715,356),(1716,478),(1716,407),(1716,313),(1716,104),(1716,196),(1716,53),(1716,217),(1716,418),(1716,483),(1716,88),(1716,450),(1716,382),(1716,353),(1716,112),(1716,225),(1716,243),(1716,275),(1716,288),(1716,220),(1716,148),(1716,30),(1716,311),(1716,115),(1716,151),(1716,49),(1716,303),(1716,346),(1717,112),(1719,98),(1719,87),(1719,446),(1720,60),(1720,207),(1720,63),(1720,151),(1720,203),(1720,74),(1720,302),(1720,416),(1720,366),(1723,362),(1723,98),(1723,3),(1723,270),(1723,229),(1723,357),(1723,159),(1723,138),(1723,494),(1723,344),(1723,457),(1723,272),(1723,207),(1723,58),(1723,314),(1723,369),(1723,11),(1723,175),(1723,307),(1723,235),(1723,438),(1723,143),(1723,112),(1723,444),(1723,122),(1723,378),(1723,442),(1723,452),(1723,494),(1724,70),(1724,424),(1724,177),(1724,63),(1724,163),(1726,437),(1726,350),(1726,419),(1726,430),(1726,358),(1726,53),(1726,333),(1726,290),(1726,71),(1726,280),(1726,179),(1726,375),(1727,276),(1727,315),(1727,441),(1727,410),(1727,343),(1727,69),(1727,121),(1727,456),(1727,398),(1727,379),(1727,371),(1727,401),(1727,90),(1727,304),(1727,199),(1727,104),(1727,386),(1727,402),(1727,254),(1727,341),(1727,24),(1727,183),(1727,181),(1727,363),(1727,238),(1727,255),(1727,449),(1727,267),(1728,481),(1728,60),(1728,155),(1729,395),(1729,104),(1729,35),(1729,451),(1729,300),(1729,481),(1729,455),(1729,363),(1729,444),(1729,114),(1729,186),(1729,484),(1729,336),(1729,160),(1730,55),(1730,349),(1730,170),(1730,389),(1730,361),(1730,0),(1730,84),(1730,176),(1730,55),(1730,135),(1730,183),(1730,283),(1730,287),(1730,229),(1730,38),(1730,0),(1730,49),(1731,213),(1731,269),(1731,350),(1731,108),(1731,384),(1731,315),(1731,253),(1731,274),(1731,214),(1731,362),(1731,447),(1731,76),(1731,120),(1731,476),(1731,77),(1731,218),(1731,431),(1731,476),(1731,44),(1731,83),(1731,333),(1731,491),(1731,238),(1731,298),(1731,130),(1731,115),(1731,244),(1731,499),(1731,345),(1732,399),(1732,247),(1732,483),(1732,206),(1732,258),(1732,415),(1732,153),(1732,292),(1732,193),(1732,195),(1732,483),(1732,474),(1732,456),(1732,236),(1732,84),(1732,162),(1732,20),(1732,143),(1735,52),(1735,32),(1735,132),(1735,205),(1735,153),(1735,19),(1735,164),(1735,173),(1735,347),(1735,149),(1735,134),(1735,41),(1735,52),(1735,269),(1735,167),(1735,442),(1735,438),(1735,435),(1735,11),(1735,329),(1735,192),(1735,345),(1735,214),(1735,322),(1735,406),(1735,354),(1735,0),(1735,388),(1736,96),(1736,462),(1736,58),(1736,421),(1736,311),(1736,490),(1736,1),(1736,303),(1736,103),(1736,239),(1736,76),(1736,458),(1736,200),(1736,495),(1736,13),(1736,407),(1736,55),(1736,106),(1736,388),(1736,378),(1736,53),(1736,333),(1736,211),(1736,230),(1736,207),(1736,491),(1736,467),(1736,185),(1737,8),(1737,280),(1737,443),(1737,11),(1737,495),(1737,79),(1737,52),(1738,370),(1738,433),(1738,158),(1738,291),(1738,259),(1738,120),(1738,317),(1738,396),(1738,176),(1738,374),(1738,279),(1738,461),(1738,280),(1738,129),(1738,208),(1738,297),(1738,266),(1738,499),(1738,216),(1738,174),(1738,337),(1738,178),(1738,464),(1738,334),(1738,163),(1738,186),(1738,474),(1738,126),(1738,241),(1739,340),(1739,306),(1739,27),(1739,157),(1739,295),(1739,251),(1739,420),(1739,95),(1739,172),(1739,211),(1739,499),(1739,285),(1739,403),(1739,29),(1739,438),(1739,494),(1739,305),(1739,396),(1739,167),(1739,241),(1739,333),(1739,347),(1739,384),(1739,93),(1740,239),(1740,468),(1740,161),(1740,494),(1740,421),(1740,152),(1740,156),(1741,185),(1741,109),(1741,461),(1741,330),(1741,218),(1741,55),(1741,237),(1741,26),(1741,252),(1741,191),(1741,101),(1741,372),(1743,21),(1743,176),(1743,420),(1743,5),(1743,472),(1743,495),(1743,462),(1743,181),(1743,162),(1743,383),(1743,255),(1743,138),(1743,144),(1743,383),(1743,288),(1743,477),(1743,5),(1743,208),(1743,90),(1743,291),(1743,495),(1743,28),(1743,280),(1743,460),(1743,146),(1743,411),(1743,179),(1745,47),(1745,90),(1745,430),(1745,284),(1745,34),(1745,365),(1745,418),(1745,388),(1745,191),(1745,117),(1745,86),(1745,337),(1745,67),(1745,28),(1745,145),(1745,153),(1745,188),(1745,232),(1745,331),(1745,148),(1745,407),(1745,408),(1745,320),(1745,197),(1745,429),(1745,354),(1745,418),(1747,246),(1747,83),(1747,431),(1747,25),(1747,218),(1747,172),(1747,394),(1747,464),(1747,165),(1747,314),(1747,337),(1747,443),(1747,335),(1747,487),(1747,246),(1747,25),(1747,252),(1747,377),(1747,116),(1747,220),(1747,207),(1747,170),(1747,117),(1747,400),(1748,238),(1748,169),(1749,150),(1749,183),(1749,225),(1749,200),(1749,211),(1749,183),(1749,58),(1749,429),(1749,279),(1749,218),(1749,402),(1749,441),(1749,397),(1749,278),(1749,390),(1749,152),(1749,217),(1749,105),(1749,88),(1749,451),(1749,237),(1749,149),(1749,93),(1749,90),(1749,370),(1749,402),(1749,18),(1750,229),(1750,33),(1750,247),(1750,88),(1750,325),(1751,149),(1751,271),(1751,364),(1751,44),(1751,64),(1751,256),(1751,367),(1751,232),(1751,384),(1751,436),(1751,404),(1751,25),(1751,230),(1751,65),(1751,431),(1752,8),(1752,381),(1752,211),(1752,341),(1752,129),(1752,437),(1752,465),(1752,389),(1753,213),(1753,476),(1753,456),(1753,22),(1753,389),(1753,121),(1753,57),(1753,409),(1753,246),(1753,430),(1753,135),(1753,453),(1753,41),(1753,498),(1754,431),(1754,379),(1754,107),(1754,151),(1754,108),(1754,117),(1754,290),(1754,427),(1755,78),(1755,126),(1755,383),(1755,485),(1755,92),(1755,126),(1755,97),(1755,206),(1755,303),(1755,60),(1755,267),(1755,55),(1755,231),(1755,194),(1755,222),(1755,357),(1755,362),(1755,78),(1755,119),(1755,163),(1755,89),(1755,326),(1755,102),(1755,308),(1755,203),(1756,433),(1756,134),(1756,407),(1756,167),(1756,88),(1756,19),(1756,89),(1756,200),(1756,358),(1756,15),(1756,434),(1756,318),(1756,132),(1756,181),(1756,395),(1756,141),(1756,157),(1756,40),(1756,377),(1756,427),(1756,449),(1756,405),(1756,491),(1756,317),(1756,109),(1756,229),(1756,20),(1756,133),(1756,26),(1758,325),(1758,429),(1758,127),(1758,45),(1758,1),(1758,47),(1758,232),(1758,204),(1758,460),(1758,463),(1758,424),(1758,187),(1758,186),(1758,426),(1758,422),(1758,310),(1758,357),(1758,85),(1758,167),(1758,117),(1758,442),(1758,488),(1758,171),(1758,401),(1758,493),(1758,405),(1758,445),(1758,371),(1758,341),(1760,250),(1760,419),(1760,126),(1760,297),(1761,133),(1761,38),(1761,371),(1761,78),(1761,24),(1761,89),(1761,154),(1761,400),(1763,401),(1763,314),(1763,115),(1763,298),(1763,426),(1763,409),(1763,79),(1763,498),(1763,230),(1763,289),(1763,171),(1763,466),(1763,297),(1763,25),(1763,307),(1763,155),(1763,187),(1763,185),(1763,262),(1763,387),(1763,494),(1763,98),(1764,128),(1764,221),(1764,250),(1764,381),(1764,251),(1764,167),(1764,376),(1764,294),(1764,231),(1764,51),(1764,224),(1764,191),(1764,272),(1764,119),(1764,8),(1764,87),(1764,225),(1764,213),(1764,364),(1764,124),(1764,372),(1764,398),(1764,195),(1764,134),(1764,464),(1764,405),(1764,197),(1764,193),(1764,449),(1765,208),(1765,108),(1765,76),(1765,324),(1765,338),(1765,411),(1765,140),(1765,350),(1765,280),(1765,430),(1765,361),(1765,392),(1765,236),(1765,376),(1765,323),(1765,304),(1765,353),(1765,282),(1765,116),(1765,15),(1765,201),(1765,200),(1765,22),(1765,183),(1765,229),(1765,263),(1765,458),(1766,384),(1766,305),(1766,214),(1767,396),(1769,204),(1769,127),(1769,403),(1769,26),(1769,315),(1769,195),(1769,30),(1769,351),(1769,197),(1769,221),(1769,445),(1769,146),(1769,453),(1769,461),(1769,414),(1769,147),(1769,354),(1769,134),(1769,300),(1769,310),(1769,121),(1769,470),(1769,91),(1769,485),(1769,228),(1769,171),(1769,37),(1770,121),(1770,258),(1770,204),(1772,319),(1773,283),(1773,327),(1773,362),(1773,329),(1773,477),(1773,449),(1773,241),(1773,169),(1773,27),(1773,44),(1773,64),(1773,493),(1773,111),(1773,433),(1773,430),(1773,233),(1773,55),(1773,179),(1773,443),(1773,359),(1774,186),(1774,34),(1774,429),(1774,156),(1774,30),(1774,411),(1775,476),(1775,269),(1775,199),(1775,32),(1775,267),(1775,122),(1775,365),(1775,224),(1775,424),(1775,341),(1777,481),(1777,356),(1777,251),(1777,341),(1777,99),(1777,457),(1777,494),(1777,185),(1777,396),(1777,298),(1778,75),(1778,406),(1778,295),(1779,325),(1779,307),(1779,138),(1779,483),(1779,135),(1779,66),(1779,156),(1779,446),(1779,355),(1779,311),(1779,355),(1779,498),(1779,422),(1779,471),(1779,63),(1779,255),(1779,150),(1779,54),(1779,214),(1779,368),(1779,90),(1781,365),(1781,59),(1781,441),(1781,129),(1781,361),(1781,200),(1781,244),(1781,209),(1781,386),(1781,243),(1781,291),(1781,440),(1781,474),(1781,317),(1781,65),(1781,275),(1781,363),(1781,7),(1781,75),(1781,435),(1781,75),(1781,487),(1781,310),(1781,133),(1781,88),(1781,379),(1781,66),(1781,423),(1781,410),(1782,370),(1782,239),(1783,433),(1783,392),(1783,283),(1783,279),(1783,369),(1783,213),(1783,477),(1783,413),(1783,191),(1783,223),(1783,347),(1783,251),(1783,108),(1783,16),(1783,458),(1783,264),(1783,361),(1783,14),(1783,498),(1783,436),(1783,42),(1783,261),(1783,18),(1783,214),(1783,139),(1783,9),(1783,158),(1783,171),(1783,171),(1784,12),(1784,261),(1784,389),(1785,329),(1785,434),(1786,32),(1786,38),(1786,450),(1786,152),(1786,429),(1788,365),(1788,446),(1789,259),(1789,175),(1789,204),(1789,254),(1789,380),(1789,369),(1789,133),(1789,299),(1789,150),(1789,423),(1789,386),(1789,45),(1789,396),(1789,376),(1789,138),(1789,266),(1789,402),(1789,460),(1789,467),(1789,320),(1791,347),(1791,363),(1791,150),(1791,11),(1791,332),(1791,3),(1791,294),(1791,346),(1791,363),(1791,377),(1791,213),(1791,66),(1791,281),(1791,486),(1791,295),(1791,155),(1791,474),(1791,120),(1791,346),(1791,10),(1791,207),(1791,195),(1791,183),(1791,481),(1791,76),(1791,332),(1791,42),(1791,446),(1791,431),(1793,400),(1793,262),(1793,30),(1793,306),(1793,154),(1793,136),(1793,478),(1793,323),(1793,272),(1794,8),(1794,99),(1794,481),(1794,236),(1794,416),(1794,230),(1794,145),(1794,461),(1794,186),(1794,249),(1794,384),(1794,425),(1794,427),(1795,485),(1795,23),(1795,64),(1795,150),(1795,349),(1796,387),(1796,386),(1796,131),(1796,158),(1796,453),(1796,490),(1796,6),(1796,64),(1796,278),(1796,33),(1797,451),(1797,83),(1797,19),(1797,409),(1797,328),(1797,217),(1797,148),(1797,447),(1797,189),(1797,44),(1797,85),(1797,198),(1797,35),(1797,448),(1797,283),(1797,460),(1797,42),(1797,332),(1797,220),(1797,178),(1797,216),(1797,233),(1797,223),(1797,96),(1797,11),(1797,33),(1797,48),(1797,250),(1798,21),(1798,436),(1798,116),(1798,217),(1798,428),(1799,91),(1799,358),(1799,407),(1799,125),(1799,224),(1799,97),(1799,416),(1799,114),(1801,224),(1801,207),(1801,298),(1802,363),(1802,241),(1802,373),(1802,354),(1802,162),(1802,273),(1802,469),(1802,487),(1802,476),(1802,175),(1802,471),(1802,499),(1802,49),(1802,25),(1802,37),(1802,481),(1802,421),(1802,215),(1802,469),(1802,48),(1802,376),(1802,239),(1802,53),(1802,291),(1802,311),(1802,105),(1802,337),(1804,490),(1804,419),(1804,54),(1804,192),(1804,456),(1804,97),(1804,361),(1804,190),(1804,212),(1804,335),(1804,54),(1804,21),(1804,352),(1804,492),(1804,321),(1804,435),(1804,152),(1804,142),(1804,284),(1804,465),(1804,202),(1804,134),(1804,288),(1804,300),(1804,391),(1805,5),(1805,182),(1805,279),(1805,350),(1805,305),(1805,306),(1805,352),(1805,194),(1805,122),(1805,462),(1805,150),(1805,147),(1805,169),(1805,113),(1805,135),(1805,111),(1805,361),(1805,338),(1805,362),(1806,205),(1806,324),(1806,40),(1806,407),(1806,108),(1806,432),(1806,286),(1806,18),(1808,325),(1808,402),(1808,459),(1808,384),(1808,480),(1808,17),(1808,85),(1808,450),(1808,77),(1808,334),(1808,446),(1808,328),(1808,227),(1808,239),(1808,96),(1808,86),(1808,14),(1808,238),(1808,131),(1808,345),(1808,167),(1808,143),(1809,333),(1809,164),(1809,466),(1809,188),(1809,337),(1809,2),(1809,74),(1809,308),(1809,314),(1809,82),(1809,404),(1809,355),(1809,154),(1809,305),(1809,382),(1809,110),(1809,148),(1809,174),(1811,218),(1811,310),(1811,404),(1811,83),(1811,219),(1811,210),(1811,409),(1811,330),(1812,371),(1812,109),(1812,198),(1812,284),(1812,263),(1812,282),(1812,157),(1812,497),(1812,439),(1812,209),(1812,462),(1812,287),(1812,142),(1812,183),(1812,273),(1812,401),(1812,470),(1812,173),(1812,13),(1812,150),(1812,298),(1813,331),(1813,195),(1813,135),(1813,259),(1813,175),(1813,431),(1813,307),(1813,61),(1813,340),(1813,121),(1813,32),(1813,475),(1813,271),(1813,7),(1813,227),(1813,409),(1813,272),(1813,409),(1813,361),(1813,203),(1813,430),(1813,499),(1813,10),(1813,413),(1813,198),(1813,21),(1813,131),(1813,161),(1815,169),(1815,131),(1815,352),(1815,167),(1815,471),(1815,394),(1815,482),(1815,312),(1815,16),(1815,398),(1815,416),(1815,101),(1815,69),(1815,52),(1818,91),(1818,468),(1818,114),(1818,497),(1818,379),(1819,218),(1819,491),(1819,447),(1819,452),(1819,16),(1819,435),(1819,92),(1819,94),(1819,1),(1819,245),(1819,462),(1819,223),(1819,215),(1819,328),(1819,135),(1819,380),(1819,244),(1819,377),(1819,195),(1819,148),(1819,232),(1819,17),(1819,181),(1819,189),(1819,415),(1819,40),(1819,449),(1819,491),(1819,283),(1820,260),(1820,187),(1820,51),(1820,398),(1820,226),(1820,261),(1820,149),(1820,43),(1820,412),(1820,58),(1820,241),(1820,396),(1820,143),(1820,459),(1820,257),(1820,193),(1820,414),(1820,203),(1820,39),(1820,42),(1820,112),(1820,195),(1820,426),(1820,372),(1820,339),(1820,0),(1820,6),(1820,199),(1822,290),(1822,422),(1822,481),(1822,490),(1822,59),(1822,458),(1822,327),(1822,213),(1822,383),(1823,52),(1823,478),(1823,417),(1823,329),(1823,419),(1823,289),(1823,331),(1823,54),(1823,17),(1824,327),(1824,364),(1824,299),(1824,37),(1824,460),(1824,291),(1824,419),(1824,31),(1824,287),(1824,261),(1824,304),(1824,440),(1824,4),(1824,229),(1825,46),(1825,243),(1825,154),(1825,422),(1825,369),(1825,374),(1825,275),(1825,26),(1825,30),(1825,215),(1825,19),(1825,29),(1825,80),(1825,219),(1825,455),(1825,453),(1825,238),(1825,462),(1825,51),(1828,376),(1828,445),(1828,487),(1828,161),(1828,389),(1828,345),(1828,257),(1828,67),(1828,458),(1828,144),(1828,116),(1828,172),(1828,252),(1828,381),(1828,253),(1828,247),(1828,43),(1828,77),(1828,220),(1828,200),(1828,386),(1828,295),(1828,225),(1828,185),(1829,182),(1829,372),(1829,178),(1829,139),(1829,50),(1829,267),(1829,243),(1829,315),(1829,474),(1829,323),(1829,359),(1829,144),(1829,137),(1829,12),(1829,397),(1829,418),(1833,283),(1833,496),(1833,413),(1833,234),(1833,135),(1833,493),(1833,49),(1833,478),(1833,426),(1833,229),(1833,58),(1833,398),(1833,474),(1833,49),(1833,269),(1833,20),(1833,100),(1833,232),(1833,228),(1833,109),(1833,418),(1833,418),(1833,252),(1833,12),(1833,72),(1833,341),(1833,167),(1833,399),(1834,487),(1834,71),(1834,171),(1834,67),(1834,363),(1834,178),(1834,334),(1834,328),(1834,23),(1834,243),(1834,406),(1835,254),(1835,422),(1835,271),(1835,126),(1835,195),(1835,14),(1835,297),(1835,19),(1835,271),(1835,56),(1835,155),(1835,57),(1835,37),(1835,228),(1835,303),(1835,385),(1835,179),(1835,23),(1835,63),(1835,136),(1835,469),(1835,36),(1835,388),(1835,90),(1835,433),(1835,396),(1835,343),(1835,304),(1836,450),(1837,332),(1837,370),(1837,164),(1837,188),(1837,310),(1837,18),(1837,121),(1837,193),(1837,18),(1837,358),(1837,282),(1837,412),(1837,482),(1837,349),(1837,390),(1837,185),(1837,460),(1837,463),(1837,264),(1837,488),(1837,258),(1837,101),(1837,428),(1837,191),(1837,336),(1837,160),(1837,412),(1838,107),(1838,106),(1839,393),(1839,140),(1839,256),(1839,116),(1839,465),(1839,278),(1839,110),(1839,429),(1839,279),(1839,173),(1839,166),(1840,428),(1841,241),(1841,337),(1841,94),(1841,218),(1841,401),(1841,267),(1841,131),(1841,456),(1841,120),(1841,258),(1841,374),(1841,22),(1841,89),(1841,39),(1841,18),(1841,359),(1841,144),(1841,191),(1841,418),(1841,470),(1841,109),(1841,58),(1841,3),(1841,194),(1841,14),(1841,116),(1841,268),(1844,445),(1844,269),(1845,255),(1845,261),(1845,347),(1845,80),(1845,380),(1845,435),(1845,103),(1845,453),(1845,189),(1845,184),(1845,357),(1845,450),(1845,335),(1845,190),(1845,499),(1845,196),(1845,213),(1845,342),(1845,426),(1847,74),(1847,335),(1847,47),(1847,172),(1847,119),(1847,7),(1847,396),(1847,22),(1847,367),(1847,378),(1847,373),(1847,85),(1847,131),(1847,116),(1847,154),(1847,46),(1847,361),(1847,62),(1848,108),(1848,174),(1848,197),(1848,410),(1848,421),(1848,265),(1848,331),(1848,440),(1848,373),(1848,416),(1848,274),(1848,1),(1848,256),(1848,146),(1848,406),(1848,91),(1848,381),(1848,208),(1848,22),(1848,370),(1848,390),(1848,312),(1848,170),(1848,485),(1848,18),(1848,400),(1848,30),(1848,355),(1848,409),(1850,9),(1850,328),(1850,255),(1850,359),(1850,207),(1850,78),(1850,197),(1850,127),(1850,147),(1850,439),(1850,348),(1850,237),(1850,88),(1850,268),(1850,484),(1850,230),(1850,138),(1850,56),(1850,314),(1850,293),(1850,2),(1850,494),(1850,13),(1850,17),(1850,141),(1850,55),(1850,426),(1851,91),(1852,476),(1852,395),(1852,88),(1852,175),(1852,179),(1852,325),(1852,429),(1852,403),(1852,402),(1852,33),(1852,182),(1853,498),(1853,498),(1853,492),(1853,258),(1853,288),(1853,52),(1853,308),(1853,293),(1853,170),(1853,369),(1853,182),(1853,290),(1853,319),(1853,314),(1853,486),(1853,391),(1853,276),(1853,290),(1853,373),(1853,265),(1853,73),(1855,218),(1855,212),(1855,106),(1855,189),(1855,242),(1855,148),(1855,40),(1855,181),(1855,303),(1855,334),(1855,165),(1855,325),(1855,131),(1855,115),(1855,216),(1855,107),(1855,480),(1855,325),(1855,455),(1855,7),(1855,269),(1855,33),(1858,143),(1858,441),(1858,319),(1858,169),(1858,10),(1858,182),(1858,417),(1859,256),(1859,496),(1859,438),(1859,167),(1859,411),(1859,253),(1859,155),(1859,68),(1860,456),(1860,480),(1860,166),(1860,329),(1860,461),(1860,175),(1860,318),(1861,334),(1863,354),(1863,175),(1863,126),(1863,292),(1863,395),(1863,25),(1863,491),(1863,149),(1863,448),(1863,230),(1863,189),(1863,130),(1863,150),(1863,490),(1863,171),(1863,249),(1863,460),(1864,257),(1864,45),(1864,410),(1864,339),(1864,475),(1864,492),(1864,344),(1864,83),(1864,269),(1864,94),(1864,192),(1864,77),(1864,437),(1864,104),(1864,159),(1864,229),(1864,26),(1864,206),(1864,493),(1864,362),(1864,311),(1864,142),(1864,271),(1864,54),(1864,351),(1864,226),(1864,410),(1864,86),(1865,370),(1865,406),(1865,80),(1865,488),(1865,52),(1865,178),(1865,386),(1865,5),(1865,422),(1865,386),(1865,218),(1865,226),(1865,478),(1865,265),(1865,273),(1865,196),(1865,383),(1865,387),(1865,298),(1865,286),(1865,142),(1865,49),(1865,27),(1865,306),(1865,452),(1865,468),(1865,319),(1866,359),(1866,171),(1866,254),(1866,304),(1866,319),(1866,470),(1866,229),(1866,63),(1866,333),(1866,351),(1866,97),(1866,444),(1867,56),(1867,494),(1867,171),(1867,68),(1867,286),(1867,28),(1867,457),(1868,259),(1868,230),(1868,241),(1868,334),(1868,244),(1868,370),(1868,434),(1868,202),(1868,420),(1868,291),(1868,254),(1868,358),(1868,53),(1868,291),(1868,290),(1868,441),(1868,234),(1868,349),(1868,209),(1868,323),(1868,479),(1868,429),(1868,59),(1868,177),(1868,408),(1869,209),(1869,448),(1869,356),(1869,3),(1869,423),(1869,53),(1869,104),(1869,153),(1869,123),(1869,286),(1869,389),(1869,370),(1869,244),(1869,270),(1869,351),(1869,381),(1869,305),(1869,466),(1869,225),(1869,337),(1869,98),(1869,67),(1869,93),(1871,335),(1871,206),(1871,290),(1871,172),(1871,432),(1871,324),(1871,449),(1871,348),(1871,6),(1872,214),(1872,144),(1872,486),(1872,25),(1872,274),(1872,462),(1872,421),(1872,354),(1872,85),(1872,107),(1872,444),(1872,180),(1872,194),(1872,283),(1872,1),(1872,409),(1872,287),(1872,309),(1872,490),(1872,198),(1873,420),(1873,463),(1873,481),(1873,248),(1873,29),(1873,281),(1873,415),(1873,386),(1873,415),(1873,265),(1873,132),(1873,364),(1873,116),(1873,109),(1873,159),(1873,118),(1873,31),(1873,39),(1873,125),(1873,430),(1873,286),(1873,60),(1873,33),(1873,311),(1873,18),(1873,159),(1873,71),(1874,37),(1874,230),(1874,106),(1874,475),(1874,92),(1874,422),(1874,26),(1874,202),(1874,129),(1874,238),(1874,207),(1874,373),(1875,469),(1875,141),(1875,453),(1875,372),(1875,446),(1875,292),(1875,440),(1875,99),(1875,355),(1875,239),(1875,49),(1875,81),(1875,375),(1875,167),(1875,77),(1875,50),(1875,205),(1875,47),(1875,13),(1875,389),(1875,344),(1875,406),(1875,362),(1875,108),(1875,90),(1876,263),(1876,252),(1876,396),(1876,360),(1876,204),(1876,115),(1876,179),(1876,124),(1876,406),(1876,361),(1876,495),(1876,55),(1876,77),(1876,223),(1876,355),(1876,349),(1876,26),(1876,307),(1876,404),(1876,52),(1876,124),(1876,101),(1876,289),(1876,370),(1877,309),(1877,17),(1877,64),(1877,145),(1877,21),(1877,496),(1877,222),(1877,103),(1877,446),(1877,227),(1877,175),(1877,331),(1877,23),(1877,134),(1877,257),(1879,181),(1879,480),(1879,475),(1879,349),(1879,229),(1879,159),(1879,178),(1879,350),(1879,2),(1879,351),(1879,389),(1879,409),(1879,151),(1879,26),(1879,79),(1879,73),(1879,210),(1880,297),(1880,72),(1880,1),(1880,388),(1880,11),(1880,213),(1880,239),(1880,122),(1880,103),(1880,138),(1880,115),(1880,289),(1880,210),(1880,488),(1880,490),(1880,145),(1880,153),(1880,449),(1880,122),(1880,490),(1880,192),(1880,51),(1880,409),(1880,76),(1880,386),(1880,178),(1880,469),(1880,402),(1880,128),(1881,82),(1881,331),(1881,146),(1881,451),(1881,438),(1881,46),(1881,420),(1881,160),(1881,241),(1881,166),(1881,366),(1881,101),(1881,72),(1881,183),(1881,87),(1881,167),(1881,11),(1882,342),(1882,471),(1882,457),(1882,226),(1882,344),(1882,177),(1882,39),(1882,135),(1882,456),(1882,376),(1882,77),(1882,178),(1882,301),(1882,323),(1882,466),(1884,481),(1884,434),(1884,72),(1884,135),(1884,348),(1884,449),(1884,114),(1884,188),(1884,63),(1884,265),(1884,318),(1884,322),(1884,275),(1884,146),(1884,266),(1884,63),(1884,327),(1884,84),(1885,65),(1885,217),(1885,231),(1885,47),(1885,275),(1885,163),(1886,403),(1886,442),(1886,421),(1886,127),(1886,242),(1886,291),(1886,481),(1886,190),(1886,195),(1886,38),(1886,95),(1886,211),(1886,255),(1886,458),(1886,5),(1886,155),(1886,7),(1887,249),(1887,238),(1887,251),(1887,380),(1887,185),(1887,0),(1887,47),(1887,82),(1887,257),(1887,243),(1887,63),(1887,351),(1887,164),(1887,345),(1889,66),(1889,70),(1889,432),(1889,119),(1889,49),(1889,457),(1889,227),(1889,493),(1889,490),(1889,74),(1891,41),(1891,311),(1892,323),(1893,361),(1893,491),(1893,92),(1893,307),(1893,388),(1893,466),(1893,408),(1893,188),(1893,216),(1893,445),(1893,262),(1893,361),(1893,388),(1893,31),(1893,93),(1893,32),(1893,127),(1893,389),(1893,398),(1893,20),(1893,453),(1893,44),(1893,225),(1893,357),(1893,459),(1893,462),(1893,120),(1895,254),(1899,98),(1899,192),(1899,230),(1899,482),(1899,416),(1899,493),(1899,371),(1899,154),(1899,392),(1899,348),(1899,129),(1899,232),(1899,80),(1899,364),(1899,98),(1899,448),(1899,397),(1899,346),(1899,484),(1901,427),(1901,190),(1901,186),(1902,239),(1902,259),(1902,149),(1902,14),(1902,291),(1905,258),(1905,248),(1905,119),(1905,250),(1905,366),(1905,180),(1905,192),(1905,413),(1905,191),(1905,49),(1905,458),(1905,472),(1905,362),(1905,176),(1905,32),(1905,305),(1905,155),(1905,13),(1905,1),(1905,180),(1905,463),(1905,125),(1905,173),(1905,106),(1905,338),(1909,417),(1909,52),(1909,92),(1909,330),(1909,408),(1909,33),(1909,322),(1909,406),(1909,270),(1909,359),(1909,257),(1909,157),(1909,220),(1909,406),(1909,348),(1909,216),(1909,410),(1909,236),(1909,270),(1909,225),(1909,415),(1909,65),(1909,482),(1909,93),(1909,141),(1909,53),(1909,86),(1910,413),(1912,405),(1912,66),(1912,121),(1912,259),(1912,177),(1912,249),(1912,97),(1912,154),(1912,147),(1912,301),(1912,163),(1912,331),(1912,46),(1912,226),(1912,86),(1912,89),(1912,28),(1912,468),(1912,132),(1912,2),(1912,143),(1912,195),(1912,487),(1912,207),(1912,92),(1912,221),(1912,195),(1912,250),(1912,330),(1914,62),(1914,93),(1914,441),(1914,287),(1914,87),(1914,342),(1914,292),(1914,357),(1914,300),(1915,78),(1915,142),(1915,232),(1915,389),(1915,466),(1915,230),(1915,137),(1915,478),(1915,432),(1915,39),(1915,175),(1915,377),(1915,394),(1915,492),(1915,172),(1915,378),(1916,325),(1916,335),(1916,110),(1919,234),(1919,442),(1919,391),(1919,386),(1919,28),(1919,260),(1919,115),(1919,111),(1919,16),(1919,139),(1919,339),(1919,203),(1919,260),(1919,92),(1919,383),(1919,421),(1919,385),(1919,392),(1919,17),(1919,391),(1919,29),(1919,441),(1919,45),(1922,428),(1922,431),(1922,163),(1922,467),(1922,204),(1922,487),(1922,118),(1922,393),(1922,235),(1922,99),(1922,276),(1922,376),(1922,399),(1922,87),(1922,249),(1922,67),(1922,191),(1922,79),(1922,445),(1922,333),(1922,436),(1922,170),(1923,73),(1923,337),(1926,94),(1926,314),(1926,70),(1926,73),(1926,182),(1926,150),(1926,469),(1926,207),(1926,362),(1926,79),(1926,230),(1926,164),(1926,379),(1926,444),(1926,201),(1926,483),(1926,44),(1926,61),(1926,260),(1926,289),(1926,72),(1926,488),(1926,220),(1926,452),(1926,352),(1927,140),(1927,260),(1927,162),(1927,173),(1927,391),(1930,307),(1930,310),(1930,173),(1930,160),(1930,9),(1930,379),(1930,434),(1930,498),(1930,139),(1930,207),(1930,279),(1930,235),(1932,161),(1932,482),(1932,218),(1932,96),(1932,247),(1932,31),(1932,0),(1932,89),(1932,322),(1932,201),(1932,345),(1932,261),(1932,203),(1932,37),(1932,165),(1932,289),(1932,377),(1932,403),(1932,412),(1932,496),(1932,149),(1932,338),(1932,188),(1932,387),(1932,261),(1932,153),(1932,143),(1932,258),(1932,27),(1933,100),(1933,124),(1933,234),(1933,28),(1933,320),(1933,148),(1933,481),(1933,223),(1933,86),(1934,122),(1934,423),(1934,85),(1934,158),(1934,101),(1934,358),(1934,203),(1934,289),(1934,157),(1934,18),(1934,55),(1934,418),(1934,51),(1934,294),(1934,483),(1934,357),(1934,340),(1934,256),(1934,448),(1934,458),(1934,425),(1934,99),(1934,408),(1934,34),(1934,84),(1934,306),(1934,131),(1934,200),(1934,62),(1935,288),(1935,117),(1936,427),(1936,497),(1936,105),(1937,297),(1937,124),(1937,365),(1937,29),(1937,449),(1937,299),(1937,491),(1937,83),(1937,16),(1937,86),(1937,162),(1937,182),(1937,164),(1937,96),(1937,134),(1937,168),(1937,232),(1937,357),(1937,185),(1937,470),(1937,396),(1937,253),(1937,315),(1937,473),(1937,455),(1937,147),(1937,146),(1937,159),(1938,454),(1938,416),(1938,468),(1938,399),(1938,332),(1938,286),(1938,99),(1938,98),(1938,27),(1938,169),(1938,59),(1938,376),(1938,279),(1938,201),(1938,478),(1938,488),(1938,425),(1938,2),(1938,363),(1938,344),(1938,73),(1938,96),(1938,61),(1938,479),(1938,70),(1938,297),(1938,484),(1938,380),(1938,22),(1939,176),(1939,20),(1939,373),(1939,186),(1939,333),(1939,464),(1939,488),(1939,218),(1939,465),(1939,459),(1939,80),(1939,224),(1940,265),(1940,298),(1940,196),(1940,331),(1940,239),(1940,289),(1940,30),(1940,149),(1940,429),(1940,160),(1940,390),(1940,40),(1940,301),(1940,331),(1940,111),(1940,388),(1940,297),(1940,294),(1940,362),(1940,111),(1940,148),(1940,414),(1940,215),(1940,149),(1940,453),(1940,152),(1941,476),(1941,213),(1941,336),(1941,110),(1941,244),(1941,93),(1941,429),(1941,245),(1941,309),(1941,236),(1941,299),(1941,224),(1941,162),(1941,329),(1941,271),(1942,76),(1942,229),(1942,303),(1942,23),(1942,162),(1942,300),(1942,425),(1942,332),(1942,56),(1942,283),(1942,323),(1942,464),(1942,69),(1942,216),(1942,346),(1942,74),(1942,492),(1942,53),(1944,257),(1944,405),(1944,97),(1944,380),(1944,53),(1944,55),(1944,330),(1944,76),(1944,91),(1944,326),(1944,226),(1944,225),(1944,437),(1944,143),(1944,261),(1944,227),(1944,268),(1944,113),(1944,128),(1944,456),(1944,272),(1944,14),(1944,169),(1944,306),(1945,267),(1946,454),(1946,396),(1946,460),(1946,381),(1946,105),(1946,6),(1946,371),(1946,185),(1946,394),(1946,205),(1946,237),(1946,44),(1946,425),(1946,88),(1946,419),(1946,438),(1946,280),(1946,465),(1946,418),(1946,59),(1946,192),(1946,379),(1946,234),(1946,403),(1946,405),(1946,368),(1948,319),(1948,386),(1948,371),(1948,78),(1948,115),(1948,106),(1948,199),(1948,285),(1948,372),(1948,28),(1948,394),(1948,341),(1948,169),(1948,397),(1948,34),(1948,187),(1948,493),(1948,265),(1948,30),(1948,376),(1948,109),(1948,187),(1948,237),(1948,24),(1948,495),(1948,252),(1948,321),(1949,372),(1949,170),(1949,385),(1949,197),(1949,365),(1949,122),(1949,186),(1949,496),(1949,403),(1949,346),(1949,268),(1949,479),(1949,262),(1949,23),(1949,85),(1949,26),(1949,272),(1949,62),(1949,424),(1949,392),(1950,42),(1950,395),(1950,336),(1950,191),(1950,303),(1950,1),(1950,439),(1950,378),(1950,12),(1950,67),(1950,329),(1950,19),(1950,21),(1950,35),(1950,229),(1950,215),(1950,399),(1950,211),(1951,123),(1951,407),(1951,74),(1951,277),(1951,393),(1951,180),(1951,359),(1951,42),(1951,52),(1951,297),(1951,153),(1951,265),(1951,412),(1951,94),(1951,383),(1951,255),(1951,195),(1951,294),(1951,74),(1951,349),(1951,286),(1951,97),(1951,329),(1951,271),(1951,49),(1952,197),(1952,113),(1952,464),(1952,168),(1952,291),(1952,122),(1952,399),(1952,175),(1952,61),(1952,110),(1952,488),(1952,301),(1952,398),(1952,297),(1952,6),(1952,52),(1952,53),(1952,474),(1952,201),(1952,132),(1952,498),(1952,327),(1952,40),(1952,416),(1952,109),(1952,449),(1952,130),(1953,243),(1953,463),(1953,168),(1953,275),(1955,484),(1955,24),(1955,430),(1955,382),(1955,241),(1955,146),(1955,53),(1955,302),(1955,470),(1955,443),(1955,239),(1955,63),(1955,146),(1955,380),(1955,386),(1955,114),(1955,311),(1955,290),(1955,317),(1955,166),(1955,282),(1955,315),(1955,221),(1955,305),(1955,32),(1955,324),(1955,89),(1957,386),(1957,118),(1957,148),(1957,173),(1957,228),(1957,158),(1957,260),(1957,58),(1957,202),(1957,65),(1957,294),(1957,165),(1957,355),(1957,223),(1957,460),(1957,131),(1957,495),(1957,458),(1957,88),(1958,358),(1958,98),(1958,268),(1958,57),(1958,20),(1958,246),(1958,151),(1958,300),(1959,144),(1959,483),(1959,454),(1959,153),(1960,75),(1960,241),(1960,205),(1960,208),(1960,188),(1960,363),(1960,389),(1960,319),(1960,79),(1960,360),(1960,439),(1960,68),(1960,437),(1960,409),(1960,405),(1960,269),(1960,253),(1960,93),(1960,102),(1960,333),(1960,27),(1960,367),(1960,64),(1960,333),(1962,483),(1962,283),(1962,258),(1962,64),(1962,5),(1962,27),(1962,263),(1963,257),(1963,244),(1963,468),(1963,430),(1963,441),(1963,231),(1963,90),(1963,458),(1963,4),(1963,312),(1963,481),(1963,116),(1963,351),(1963,425),(1963,88),(1963,381),(1963,437),(1963,478),(1963,38),(1963,422),(1963,481),(1963,129),(1963,453),(1963,7),(1963,142),(1963,76),(1964,266),(1964,461),(1964,418),(1964,263),(1964,420),(1964,257),(1964,404),(1964,328),(1964,147),(1964,315),(1964,102),(1964,290),(1964,489),(1964,43),(1964,372),(1965,486),(1965,316),(1965,90),(1965,126),(1965,274),(1965,196),(1965,108),(1965,464),(1965,313),(1965,432),(1965,299),(1965,31),(1965,427),(1965,56),(1965,125),(1965,139),(1965,137),(1965,14),(1965,104),(1965,384),(1966,53),(1966,393),(1966,147),(1966,318),(1966,465),(1966,281),(1966,224),(1966,234),(1966,302),(1966,473),(1966,339),(1966,22),(1966,344),(1966,198),(1966,403),(1966,424),(1966,238),(1966,261),(1967,254),(1967,204),(1967,137),(1967,6),(1967,219),(1967,42),(1967,396),(1967,139),(1967,99),(1967,447),(1967,77),(1967,254),(1967,441),(1967,347),(1967,385),(1967,110),(1967,156),(1967,132),(1967,36),(1967,269),(1967,186),(1968,197),(1968,39),(1968,175),(1968,429),(1968,204),(1968,179),(1968,302),(1969,217),(1969,19),(1969,145),(1969,341),(1969,11),(1969,242),(1969,190),(1969,469),(1969,297),(1969,106),(1969,65),(1969,352),(1969,54),(1969,258),(1969,242),(1970,480),(1970,29),(1970,234),(1970,378),(1970,386),(1970,341),(1970,127),(1970,88),(1970,402),(1970,157),(1970,282),(1970,210),(1970,102),(1970,174),(1970,50),(1970,354),(1970,443),(1970,207),(1970,213),(1970,144),(1970,397),(1970,245),(1970,465),(1970,376),(1970,251),(1971,485),(1971,74),(1971,360),(1971,132),(1971,489),(1971,83),(1971,470),(1971,95),(1971,121),(1971,121),(1971,152),(1972,52),(1972,412),(1972,258),(1972,329),(1972,18),(1972,242),(1972,472),(1972,68),(1972,4),(1972,142),(1972,493),(1972,487),(1972,469),(1972,313),(1972,254),(1972,27),(1972,55),(1972,243),(1972,7),(1972,62),(1972,10),(1972,358),(1976,162),(1976,297),(1976,476),(1976,429),(1976,464),(1976,373),(1976,205),(1976,162),(1976,153),(1976,464),(1976,104),(1976,68),(1976,300),(1976,25),(1976,136),(1976,290),(1976,64),(1976,436),(1976,238),(1976,444),(1976,483),(1976,39),(1976,165),(1976,179),(1976,452),(1977,56),(1978,351),(1979,435),(1979,245),(1979,3),(1979,274),(1979,331),(1979,305),(1979,486),(1979,114),(1979,453),(1979,226),(1979,217),(1979,113),(1979,22),(1979,369),(1979,328),(1979,481),(1979,153),(1979,85),(1979,4),(1979,377),(1979,17),(1979,176),(1979,226),(1979,447),(1979,463),(1980,165),(1980,433),(1980,496),(1980,242),(1980,215),(1980,412),(1980,69),(1980,334),(1980,269),(1980,328),(1980,326),(1980,238),(1980,103),(1980,48),(1980,281),(1980,84),(1980,219),(1980,72),(1980,0),(1980,415),(1980,170),(1980,450),(1980,24),(1980,281),(1980,495),(1980,77),(1980,400),(1980,195),(1980,253),(1982,282),(1982,464),(1982,84),(1983,231),(1983,323),(1983,176),(1983,371),(1983,127),(1983,52),(1983,375),(1983,144),(1983,241),(1983,317),(1983,341),(1983,130),(1983,350),(1983,80),(1983,469),(1983,496),(1983,95),(1983,466),(1983,97),(1983,161),(1983,125),(1983,159),(1983,498),(1983,323),(1983,384),(1983,183),(1983,96),(1983,170),(1983,163),(1984,397),(1984,411),(1984,169),(1984,199),(1984,295),(1984,423),(1984,463),(1984,312),(1984,58),(1984,382),(1984,154),(1984,112),(1984,10),(1984,340),(1984,105),(1984,253),(1984,92),(1984,445),(1984,248),(1984,301),(1984,331),(1984,27),(1984,237),(1984,361),(1985,389),(1985,328),(1985,300),(1985,271),(1985,469),(1985,265),(1985,31),(1985,408),(1985,23),(1985,23),(1985,145),(1985,438),(1985,269),(1987,292),(1987,132),(1987,439),(1987,27),(1987,307),(1987,447),(1987,263),(1987,228),(1987,197),(1987,22),(1987,66),(1987,157),(1987,162),(1987,399),(1987,86),(1987,431),(1987,174),(1987,9),(1987,469),(1987,201),(1987,64),(1987,146),(1987,367),(1987,476),(1987,230),(1987,130),(1987,480),(1987,418),(1987,234),(1989,119),(1989,477),(1989,3),(1989,235),(1989,196),(1989,74),(1989,87),(1989,215),(1989,401),(1989,60),(1989,153),(1989,311),(1989,131),(1990,60),(1991,77),(1991,260),(1991,120),(1991,121),(1991,36),(1991,292),(1991,145),(1991,45),(1991,416),(1991,307),(1991,480),(1991,411),(1991,313),(1991,1),(1991,274),(1991,281),(1991,145),(1991,140),(1991,340),(1991,408),(1991,93),(1991,292),(1991,249),(1996,190),(1996,193),(1997,112),(1997,220),(1997,74),(1997,216),(1997,117),(1997,78),(1997,38),(1997,101),(1997,215),(1997,374),(1997,291),(1998,29),(1998,392),(1998,367),(1998,403),(1998,396),(1998,96),(1998,246),(1998,393),(1998,356),(1998,252),(1998,95),(1998,132),(1998,319),(1998,269),(1998,201),(1998,481),(1998,468),(1998,191),(1998,399),(1998,398),(1998,65),(1998,18),(1998,9),(1998,465),(1998,338),(1998,393),(1998,224),(1998,467),(1998,80),(1999,271),(1999,242),(1999,485),(1999,114),(1999,36),(1999,113),(1999,112),(1999,470),(1999,436),(1999,178),(1999,319),(1999,190),(1999,480),(1999,358),(1999,433),(1999,294),(1999,365),(1999,99),(1999,92),(1999,433),(1999,307),(1999,133),(1999,421),(1999,322),(1999,179),(1999,138),(1999,362),(1999,341); /*!40000 ALTER TABLE `purchases` ENABLE KEYS */; UNLOCK TABLES; /*!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 */; -- Dump completed on 2009-05-25 13:57:34