Created
November 7, 2017 23:12
-
-
Save vool/b46f40922bccc8c33559e3e7e69f9906 to your computer and use it in GitHub Desktop.
Irish county and town create and populate sql statments
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- | |
-- Table structure for table `counties` | |
-- | |
CREATE TABLE IF NOT EXISTS `counties` ( | |
`countyID` int(11) NOT NULL auto_increment, | |
`countyName` varchar(10) NOT NULL, | |
`lat` float default NULL, | |
`lng` float default NULL, | |
`zoom` int(11) default NULL, | |
`province` int(2) NOT NULL COMMENT '1=con 2=len 3=mun 4=uls', | |
PRIMARY KEY (`countyID`) | |
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=54 ; | |
-- | |
-- Dumping data for table `counties` | |
-- | |
INSERT INTO `counties` (`countyID`, `countyName`, `lat`, `lng`, `zoom`, `province`) VALUES | |
(1, 'Antrim', -6.50139, 54.2442, 8, 4), | |
(2, 'Armagh', -6.50139, 54.2442, 8, 4), | |
(3, 'Carlow', -6.85208, 52.6774, 8, 2), | |
(4, 'Cavan', -7.34251, 54.0148, 8, 4), | |
(5, 'Clare', -8.96257, 52.8806, 8, 3), | |
(6, 'Cork', -8.61395, 52, 8, 3), | |
(7, 'Derry', -7.15957, 54.9265, 8, 4), | |
(8, 'Donegal', -8.009, 54.9145, 8, 1), | |
(9, 'Down', -5.95524, 54.3416, 8, 4), | |
(10, 'Dublin', -6.38436, 53.3567, 10, 2), | |
(11, 'Fermanagh', -7.63743, 54.3567, 8, 4), | |
(12, 'Galway', -8.89098, 53.3597, 8, 1), | |
(13, 'Kerry', -9.68033, 52.1562, 8, 3), | |
(14, 'Kildare', -6.75278, 53.1657, 8, 2), | |
(15, 'Kilkenny', -7.24713, 52.5389, 8, 2), | |
(16, 'Laois', -7.39374, 52.9665, 8, 2), | |
(17, 'Leitrim', -8.00167, 54.1162, 8, 1), | |
(18, 'Limerick', -8.82411, 52.5222, 8, 3), | |
(19, 'Longford', -7.75296, 53.6643, 8, 2), | |
(20, 'Louth', -6.48227, 53.9174, 8, 2), | |
(21, 'Mayo', -9.25167, 53.899, 8, 1), | |
(22, 'Meath', -6.67162, 53.666, 8, 1), | |
(23, 'Monaghan', -6.91341, 54.1512, 8, 4), | |
(24, 'Offaly', -7.651, 53.243, 8, 2), | |
(25, 'Roscommon', -8.25101, 53.7507, 8, 2), | |
(26, 'Sligo', -8.61941, 54.1422, 8, 1), | |
(27, 'Tipperary', -7.89453, 52.6107, 8, 2), | |
(28, 'Tyrone', -7.25292, 54.6451, 8, 4), | |
(29, 'Waterford', -7.48742, 52.2484, 8, 3), | |
(30, 'Westmeath', -7.50328, 53.5009, 8, 2), | |
(31, 'Wexford', NULL, NULL, 8, 2), | |
(32, 'Wicklow', NULL, NULL, 8, 2); | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `towns` | |
-- | |
CREATE TABLE IF NOT EXISTS `towns` ( | |
`townID` int(11) NOT NULL auto_increment, | |
`countyID` int(11) NOT NULL, | |
`townName` varchar(30) NOT NULL, | |
PRIMARY KEY (`townID`) | |
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1392 ; | |
-- | |
-- Dumping data for table `towns` | |
-- | |
INSERT INTO `towns` (`townID`, `countyID`, `townName`) VALUES | |
(1, 16, 'Portlaoise'), | |
(2, 1, 'Belfast'), | |
(3, 2, 'Armagh'), | |
(4, 3, 'Carlow'), | |
(5, 4, 'Cavan'), | |
(6, 5, 'Ennis'), | |
(7, 6, 'Cork'), | |
(8, 7, 'Derry'), | |
(9, 8, 'Donegal'), | |
(10, 9, 'Newry'), | |
(11, 10, 'Dublin'), | |
(12, 11, 'Enniskillen'), | |
(13, 12, 'Galway'), | |
(14, 13, 'Tralee'), | |
(15, 14, 'Kildare'), | |
(16, 15, 'Kilkenny'), | |
(17, 17, 'Carrick-on-Shannon'), | |
(18, 18, 'Limerick'), | |
(19, 19, 'Longford'), | |
(20, 20, 'Dundalk'), | |
(21, 21, 'Castlebar'), | |
(22, 22, 'Navan'), | |
(23, 23, 'Monaghan'), | |
(24, 24, 'Tullamore'), | |
(25, 25, 'Roscommon'), | |
(26, 26, 'Sligo'), | |
(27, 27, 'Nenagh'), | |
(28, 28, 'Omagh'), | |
(29, 29, 'Waterford'), | |
(30, 30, 'Mullingar'), | |
(31, 31, 'Wexford'), | |
(32, 32, 'Bray'), | |
(33, 16, 'Abbeyleix'), | |
(34, 16, 'Ballacolla'), | |
(35, 13, 'Killarney'), | |
(36, 13, 'Abbeydorney'), | |
(37, 13, 'Annascaul'), | |
(38, 13, 'Ardfert'), | |
(39, 13, 'Ballinskelligs'), | |
(40, 13, 'Ballybunion'), | |
(41, 13, 'Ballyduff'), | |
(42, 13, 'Ballyheigue'), | |
(43, 16, 'Durrow'), | |
(44, 16, 'Portarlington'), | |
(45, 16, 'Mountmellick'), | |
(46, 16, 'Mountrath'), | |
(47, 16, 'Ballinakill'), | |
(48, 16, 'Ballybrophy'), | |
(49, 13, 'Ballyferriter'), | |
(50, 13, 'Ballylongford'), | |
(51, 13, 'Ballymacelligott'), | |
(52, 13, 'Brosna'), | |
(53, 13, 'Caherdaniel'), | |
(54, 13, 'Cahersiveen'), | |
(55, 13, 'Castlecove'), | |
(56, 13, 'Castlegregory'), | |
(57, 13, 'Castleisland'), | |
(58, 13, 'Castlemaine'), | |
(59, 13, 'Causeway'), | |
(60, 13, 'Ventry'), | |
(61, 13, 'Waterville'), | |
(62, 13, 'Cordal'), | |
(63, 13, 'Currans'), | |
(64, 13, 'Currow'), | |
(65, 13, 'Derrymore'), | |
(66, 13, 'Derrynane'), | |
(67, 13, 'Dingle'), | |
(68, 13, 'Duagh'), | |
(69, 13, 'Dunquin'), | |
(70, 13, 'Farranfore'), | |
(71, 13, 'Fenit'), | |
(72, 13, 'Kenmare'), | |
(76, 3, 'Abbeyleix'), | |
(77, 3, 'Ballinakill'), | |
(78, 3, 'Ballon'), | |
(79, 3, 'Ballycolla'), | |
(80, 3, 'Ballylynan'), | |
(81, 3, 'Ballyroan'), | |
(82, 3, 'Borris'), | |
(83, 3, 'Borris-in-Ossory'), | |
(84, 3, 'Bunclody'), | |
(85, 3, 'Carrickduff'), | |
(86, 3, 'Castletown'), | |
(87, 3, 'Clonaslee'), | |
(88, 3, 'Clonegal'), | |
(89, 3, 'Cranemore'), | |
(90, 3, 'Durrow'), | |
(91, 3, 'Emo'), | |
(92, 3, 'Errill'), | |
(93, 3, 'Graiguenamanagh'), | |
(94, 3, 'Hacketstown'), | |
(95, 3, 'Johnstown'), | |
(96, 3, 'Kellistown'), | |
(97, 3, 'Kernanstown'), | |
(98, 3, 'Kildavin '), | |
(99, 3, 'Killermogh'), | |
(100, 3, 'Leighlinbridge'), | |
(101, 3, 'Mountrath'), | |
(102, 3, 'Muinebeag'), | |
(103, 3, 'Myshall'), | |
(104, 3, 'Newtown'), | |
(105, 3, 'Rathdowney'), | |
(106, 3, 'Rathsaran'), | |
(107, 3, 'Rathvilly'), | |
(108, 3, 'Stradbally'), | |
(109, 3, 'Tinnahinch'), | |
(110, 3, 'Tinriland'), | |
(111, 3, 'Tullow'), | |
(112, 4, 'Arva'), | |
(113, 4, 'Ashfield'), | |
(114, 4, 'Bailieborough'), | |
(115, 4, 'Ballinagh'), | |
(116, 4, 'Ballyconnell'), | |
(117, 4, 'Ballyhaise'), | |
(118, 4, 'Ballyjamesduff'), | |
(119, 4, 'Bellananagh'), | |
(120, 4, 'Belturbet'), | |
(121, 4, 'Blacklion'), | |
(122, 4, 'Butlersbridge'), | |
(123, 4, 'Cootehill'), | |
(124, 4, 'Kilconny'), | |
(125, 4, 'Killeshandra'), | |
(126, 4, 'Kilnaleck'), | |
(127, 4, 'Kingscourt'), | |
(128, 4, 'Lough Gowna'), | |
(129, 4, 'Moynehall'), | |
(130, 4, 'Mullagh'), | |
(131, 4, 'Scrabby'), | |
(132, 4, 'Shercock'), | |
(133, 4, 'Swanlinbar'), | |
(134, 4, 'Tullyvin East'), | |
(135, 4, 'Virginia'), | |
(136, 5, 'Ardnacrusha (Castlebank)'), | |
(137, 5, 'Ardskeagh'), | |
(138, 5, 'Ayle'), | |
(139, 5, 'Ballycannan'), | |
(140, 5, 'Ballyea'), | |
(141, 5, 'Ballyglass'), | |
(142, 5, 'Ballyvaughan'), | |
(143, 5, 'Clareabbey'), | |
(144, 5, 'Clenagh'), | |
(145, 5, 'Clonlara'), | |
(146, 5, 'Corofin'), | |
(147, 5, 'Cratloe'), | |
(148, 5, 'Crusheen'), | |
(149, 5, 'Doonbeg'), | |
(150, 5, 'Doora'), | |
(151, 5, 'Drumcreehy'), | |
(152, 5, 'Drumline'), | |
(153, 5, 'Drummaan'), | |
(154, 5, 'Ennistymon'), | |
(155, 5, 'Feakle'), | |
(156, 5, 'Glenmore'), | |
(157, 5, 'Inagh'), | |
(158, 5, 'Kildysart'), | |
(159, 5, 'Kilfenora'), | |
(160, 5, 'Kilkee'), | |
(161, 5, 'Kilkishen'), | |
(162, 5, 'Killadysert'), | |
(163, 5, 'Killaloe'), | |
(164, 5, 'Kilmihill'), | |
(165, 5, 'Kilmurry'), | |
(166, 5, 'Kilnamona'), | |
(167, 5, 'Kilrush'), | |
(168, 5, 'Kilseily'), | |
(169, 5, 'Kiltannon'), | |
(170, 5, 'Kiltenanlea'), | |
(171, 5, 'Lahinch'), | |
(172, 5, 'Liscannor'), | |
(173, 5, 'Lisdoonvarna'), | |
(174, 5, 'Miltown Malbay'), | |
(175, 5, 'Mountievers'), | |
(176, 5, 'Mountshannon'), | |
(177, 5, 'Moy'), | |
(178, 5, 'Newmarket'), | |
(179, 5, 'Newmarket-on-Fergus'), | |
(180, 5, 'OBriensbridge-Montpelier'), | |
(181, 5, 'Quilty'), | |
(182, 5, 'Quin'), | |
(183, 5, 'Rossroe'), | |
(184, 5, 'Scarriff'), | |
(185, 5, 'Shannon'), | |
(186, 5, 'Sixmilebridge'), | |
(187, 5, 'Spancelhill'), | |
(188, 5, 'Tulla'), | |
(189, 5, 'Urlan'), | |
(190, 5, 'Whitegate'), | |
(191, 6, 'Aghada-Farsid-Rostellan'), | |
(192, 6, 'Aglish'), | |
(193, 6, 'An Sliabh Riabhach'), | |
(194, 6, 'Baile Mhic ire'), | |
(195, 6, 'Ballincollig'), | |
(196, 6, 'Ballineen'), | |
(197, 6, 'Ballyclogh'), | |
(198, 6, 'Ballycotton'), | |
(199, 6, 'Ballydehob'), | |
(200, 6, 'Ballydesmond'), | |
(201, 6, 'Ballygarvan'), | |
(202, 6, 'Ballygroman'), | |
(203, 6, 'Ballyhooly'), | |
(204, 6, 'Ballymodan'), | |
(205, 6, 'Ballymoney'), | |
(206, 6, 'Baltimore'), | |
(207, 6, 'Bandon'), | |
(208, 6, 'Banteer'), | |
(209, 6, 'Bantry'), | |
(210, 6, 'Beal Atha an Ghaorthaidh'), | |
(211, 6, 'Bealock'), | |
(212, 6, 'Belgooly'), | |
(213, 6, 'Bishopstown'), | |
(214, 6, 'Blarney'), | |
(215, 6, 'Boherbue'), | |
(216, 6, 'Bredagh'), | |
(217, 6, 'Bridebridge'), | |
(218, 6, 'Buttevant'), | |
(219, 6, 'Caherlag'), | |
(220, 6, 'Carrigaline'), | |
(221, 6, 'Carrignavar'), | |
(222, 6, 'Carrigrohane Beg'), | |
(223, 6, 'Carrigtohill'), | |
(224, 6, 'Castlehaven North'), | |
(225, 6, 'Castlelyons'), | |
(226, 6, 'Castlemartyr'), | |
(227, 6, 'Castletownbere'), | |
(228, 6, 'Castletownroche'), | |
(229, 6, 'Castletownshend'), | |
(230, 6, 'Churchbay'), | |
(231, 6, 'Churchtown'), | |
(232, 6, 'Clonakilty'), | |
(233, 6, 'Clonmeen'), | |
(234, 6, 'Cloughduv'), | |
(235, 6, 'Cloyne'), | |
(236, 6, 'Cloyne'), | |
(237, 6, 'Coachford'), | |
(238, 6, 'Cobh'), | |
(239, 6, 'Conna'), | |
(240, 6, 'Coomlogane'), | |
(241, 6, 'Corkbeg'), | |
(242, 6, 'Courtmacsherry'), | |
(243, 6, 'Crookstown'), | |
(244, 6, 'Crosshaven'), | |
(245, 6, 'Doneraile'), | |
(246, 6, 'Douglas'), | |
(247, 6, 'Drimoleague'), | |
(248, 6, 'Dripsey'), | |
(249, 6, 'Drishane'), | |
(250, 6, 'Dromdaleague South'), | |
(251, 6, 'Dromina'), | |
(252, 6, 'Drommahane'), | |
(253, 6, 'Dromore'), | |
(254, 6, 'Dunmanway'), | |
(255, 6, 'Durrus'), | |
(256, 6, 'Durrus West'), | |
(257, 6, 'Enniskean'), | |
(258, 6, 'Farahy'), | |
(259, 6, 'Farran'), | |
(260, 6, 'Fermoy'), | |
(261, 6, 'Fountainstown'), | |
(262, 6, 'Glanworth'), | |
(263, 6, 'Glanworth West'), | |
(264, 6, 'Gortroe'), | |
(265, 6, 'Greenane'), | |
(266, 6, 'Inchigeelagh'), | |
(267, 6, 'Inishannon'), | |
(268, 6, 'Inishkenny'), | |
(269, 6, 'Innishannon'), | |
(270, 6, 'Kanturk'), | |
(271, 6, 'Kilbonane'), | |
(272, 6, 'Kilbrittain'), | |
(273, 6, 'Kilbrogan'), | |
(274, 6, 'Kilcor'), | |
(275, 6, 'Kildorrery'), | |
(276, 6, 'Kilfaughnabeg'), | |
(277, 6, 'Killaconenagh'), | |
(278, 6, 'Killavullen'), | |
(279, 6, 'Killeagh'), | |
(280, 6, 'Killumney'), | |
(281, 6, 'Kilmaclenine'), | |
(282, 6, 'Kilmonoge'), | |
(283, 6, 'Kilworth'), | |
(284, 6, 'Kinsale'), | |
(285, 6, 'Knockglass'), | |
(286, 6, 'Knockmourne'), | |
(287, 6, 'Knocknagree'), | |
(288, 6, 'Knockraha'), | |
(289, 6, 'Knockskagh'), | |
(290, 6, 'Leap'), | |
(291, 6, 'Lehenagh'), | |
(292, 6, 'Liscarroll'), | |
(293, 6, 'Liscleary'), | |
(294, 6, 'Macloneigh'), | |
(295, 6, 'Macroom'), | |
(296, 6, 'Magourney'), | |
(297, 6, 'Mallow'), | |
(298, 6, 'Matehy'), | |
(299, 6, 'Midleton'), | |
(300, 6, 'Milford'), | |
(301, 6, 'Millstreet'), | |
(302, 6, 'Mitchelstown'), | |
(303, 6, 'Monanimy'), | |
(304, 6, 'Monkstown'), | |
(305, 6, 'Moviddy'), | |
(306, 6, 'Myross'), | |
(307, 6, 'Na hUlain'), | |
(308, 6, 'Newmarket'), | |
(309, 6, 'Newtown'), | |
(310, 6, 'Ovens'), | |
(311, 6, 'Passage West'), | |
(312, 6, 'Rathard'), | |
(313, 6, 'Rathcooney'), | |
(314, 6, 'Rathcormac'), | |
(315, 6, 'Rathluirc (or Charleville)'), | |
(316, 6, 'Ringaskiddy'), | |
(317, 6, 'Riverstown'), | |
(318, 6, 'Rosscarbery'), | |
(319, 6, 'Rostellan'), | |
(320, 6, 'Schull'), | |
(321, 6, 'Shanagarry'), | |
(322, 6, 'Skagh'), | |
(323, 6, 'Skibbereen'), | |
(324, 6, 'St. Marys'), | |
(325, 6, 'Teadies'), | |
(326, 6, 'Templebreedy'), | |
(327, 6, 'Timoleague'), | |
(328, 6, 'Tower'), | |
(329, 6, 'Tullagh'), | |
(330, 6, 'Unionhall'), | |
(331, 6, 'Warrenscourt'), | |
(332, 6, 'Watergrasshill'), | |
(333, 6, 'Whitechurch'), | |
(334, 6, 'Whitegate'), | |
(335, 6, 'Williamstown'), | |
(336, 6, 'Youghal'), | |
(337, 8, 'Ailt an Chorrain'), | |
(338, 8, 'An Bun Beag-Doiri Beaga'), | |
(339, 8, 'An Charraig'), | |
(340, 8, 'An Cheathru Chaol'), | |
(341, 8, 'An Clochan Liath'), | |
(342, 8, 'An Fal Carrach'), | |
(343, 8, 'An Leargaidh Mhor'), | |
(344, 8, 'Anagaire'), | |
(345, 8, 'Ard an Ratha'), | |
(346, 8, 'Ardara'), | |
(347, 8, 'Ballintra'), | |
(348, 8, 'Ballybofey-Stranorlar'), | |
(349, 8, 'Ballyliffin'), | |
(350, 8, 'Ballymacool'), | |
(351, 8, 'Ballyshannon'), | |
(352, 8, 'Birdstown'), | |
(353, 8, 'Bridge End'), | |
(354, 8, 'Bun na Leaca'), | |
(355, 8, 'Buncrana'), | |
(356, 8, 'Bundoran'), | |
(357, 8, 'Burnfoot'), | |
(358, 8, 'Burt'), | |
(359, 8, 'Carndonagh'), | |
(360, 8, 'Carraig Airt'), | |
(361, 8, 'Carrickart'), | |
(362, 8, 'Carrickboy'), | |
(363, 8, 'Carrigans'), | |
(364, 8, 'Carrowkeel'), | |
(365, 8, 'Castlecary'), | |
(366, 8, 'Castlefin'), | |
(367, 8, 'Castleforward'), | |
(368, 8, 'Castlewray'), | |
(369, 8, 'Cill Charthaigh'), | |
(370, 8, 'Cill Ghabhlaigh'), | |
(371, 8, 'Clonleigh South'), | |
(372, 8, 'Clonmany'), | |
(373, 8, 'Cnoc na Muirleog'), | |
(374, 8, 'Convoy'), | |
(375, 8, 'Corravaddy'), | |
(376, 8, 'Creeslough'), | |
(377, 8, 'Culdaff'), | |
(378, 8, 'Dooish'), | |
(379, 8, 'Dun Fionnachaidh'), | |
(380, 8, 'Dunfanaghy'), | |
(381, 8, 'Dunkineely'), | |
(382, 8, 'Edenacarnan'), | |
(383, 8, 'Fahan'), | |
(384, 8, 'Figart'), | |
(385, 8, 'Gleann Cholm Cille'), | |
(386, 8, 'Gleann Gheis'), | |
(387, 8, 'Gleneely'), | |
(388, 8, 'Glennagannon'), | |
(389, 8, 'Glenties'), | |
(390, 8, 'Glentogher'), | |
(391, 8, 'Gort an Choirce'), | |
(392, 8, 'Gortnavern'), | |
(393, 8, 'Greencastle'), | |
(394, 8, 'Illies'), | |
(395, 8, 'Inis Mhic an Doirn'), | |
(396, 8, 'Kilderry'), | |
(397, 8, 'Kildrum'), | |
(398, 8, 'Killea'), | |
(399, 8, 'Killybegs'), | |
(400, 8, 'Killygordan'), | |
(401, 8, 'Kilmacrennan'), | |
(402, 8, 'Knock'), | |
(403, 8, 'Laghy'), | |
(404, 8, 'Letterkenny'), | |
(405, 8, 'Lifford'), | |
(406, 8, 'Loch an Iuir'), | |
(407, 8, 'Machaire Chlochair'), | |
(408, 8, 'Magheraboy'), | |
(409, 8, 'Malainn Bhig'), | |
(410, 8, 'Malin'), | |
(411, 8, 'Manorcunningham'), | |
(412, 8, 'Milford'), | |
(413, 8, 'Min an Chladaigh'), | |
(414, 8, 'Min Larach'), | |
(415, 8, 'Mountcharles'), | |
(416, 8, 'Moville'), | |
(417, 8, 'Muff'), | |
(418, 8, 'Na Croisbhealai'), | |
(419, 8, 'Newtowncunningham'), | |
(420, 8, 'Pettigo'), | |
(421, 8, 'Ramelton'), | |
(422, 8, 'Rann na Feirste'), | |
(423, 8, 'Raphoe'), | |
(424, 8, 'Rathmelton'), | |
(425, 8, 'Rathmullen'), | |
(426, 8, 'Ros Goill'), | |
(427, 8, 'St. Johnston'), | |
(428, 8, 'Straid'), | |
(429, 8, 'Stranorlar'), | |
(430, 8, 'Tantallon'), | |
(431, 8, 'Tievebane'), | |
(432, 10, 'Avondale'), | |
(433, 10, 'Balally'), | |
(434, 10, 'Balbriggan'), | |
(435, 10, 'Baldoyle'), | |
(436, 10, 'Balgriffin'), | |
(437, 10, 'Ballinascorney'), | |
(438, 10, 'Ballinteer'), | |
(439, 10, 'Ballyboden'), | |
(440, 10, 'Ballyboghil'), | |
(441, 10, 'Ballybrack'), | |
(442, 10, 'Belfield'), | |
(443, 10, 'Blackrock'), | |
(444, 10, 'Blanchardstown'), | |
(445, 10, 'Bohernabreena'), | |
(446, 10, 'Booterstown'), | |
(447, 10, 'Bray'), | |
(448, 10, 'Brittas'), | |
(449, 10, 'Broadford'), | |
(450, 10, 'Bullock'), | |
(451, 10, 'Cabinteely'), | |
(452, 10, 'Carysfort'), | |
(453, 10, 'Castle'), | |
(454, 10, 'Castleknock'), | |
(455, 10, 'Churchtown'), | |
(456, 10, 'Clondalkin'), | |
(457, 10, 'Clonmethan'), | |
(458, 10, 'Clonskeagh'), | |
(459, 10, 'Coliemore'), | |
(460, 10, 'Dalkey'), | |
(461, 10, 'Donabate'), | |
(462, 10, 'Dubber'), | |
(463, 10, 'Dun Laoghaire'), | |
(464, 10, 'Dundrum'), | |
(465, 10, 'Dunlaoighaire'), | |
(466, 10, 'Edmondstown'), | |
(467, 10, 'Farranboley'), | |
(468, 10, 'Fingal Airport'), | |
(469, 10, 'Firhouse'), | |
(470, 10, 'Foxrock'), | |
(471, 10, 'Garristown'), | |
(472, 10, 'Glencullen'), | |
(473, 10, 'Glenomena'), | |
(474, 10, 'Granitefield'), | |
(475, 10, 'Hollywood'), | |
(476, 10, 'Holmpatrick'), | |
(477, 10, 'Howth'), | |
(478, 10, 'Kilbogget'), | |
(479, 10, 'Killiney North'), | |
(480, 10, 'Killiney South'), | |
(481, 10, 'Kilmacud'), | |
(482, 10, 'Kilsallaghan'), | |
(483, 10, 'Kinsealy-Drinan'), | |
(484, 10, 'Landscape'), | |
(485, 10, 'Loughlinstown'), | |
(486, 10, 'Loughshinny'), | |
(487, 10, 'Lucan'), | |
(488, 10, 'Ludford'), | |
(489, 10, 'Lusk'), | |
(490, 10, 'Malahide'), | |
(491, 10, 'Marley'), | |
(492, 10, 'Meadowbroads'), | |
(493, 10, 'Meadowmount'), | |
(494, 10, 'Milltown'), | |
(495, 10, 'Monkstown'), | |
(496, 10, 'Naul'), | |
(497, 10, 'Newcastle'), | |
(498, 10, 'Newpark'), | |
(499, 10, 'Nutgrove'), | |
(500, 10, 'Oldtown'), | |
(501, 10, 'Orwell'), | |
(502, 10, 'Palmerston'), | |
(503, 10, 'Portmarnock'), | |
(504, 10, 'Portrane'), | |
(505, 10, 'Pottery'), | |
(506, 10, 'Rathcoole'), | |
(507, 10, 'Rathdown'), | |
(508, 10, 'Rathfarnham'), | |
(509, 10, 'Rivermeade'), | |
(510, 10, 'Roebuck'), | |
(511, 10, 'Rush'), | |
(512, 10, 'Saggart'), | |
(513, 10, 'Sandyford'), | |
(514, 10, 'Seapoint'), | |
(515, 10, 'Shankill'), | |
(516, 10, 'Skerries'), | |
(517, 10, 'Stillorgan'), | |
(518, 10, 'Stradbrook'), | |
(519, 10, 'Sutton'), | |
(520, 10, 'Sweetmount'), | |
(521, 10, 'Swords'), | |
(522, 10, 'Tallaght'), | |
(523, 10, 'Taney'), | |
(524, 10, 'Templehill'), | |
(525, 10, 'Templeogue'), | |
(526, 10, 'Terenure'), | |
(527, 10, 'The Ward'), | |
(528, 10, 'Tibradden'), | |
(529, 10, 'Turnapin'), | |
(530, 10, 'Williamstown'), | |
(531, 10, 'Windy Arbour'), | |
(532, 10, 'Woodlawn'), | |
(533, 10, 'Woodpark'), | |
(534, 12, 'Ahascragh'), | |
(535, 12, 'An Carn Mor'), | |
(536, 12, 'An Cheathru Rua'), | |
(537, 12, 'An Crompan'), | |
(538, 12, 'An Fhairche'), | |
(539, 12, 'An Spideal'), | |
(540, 12, 'Annaghdown'), | |
(541, 12, 'Arainn'), | |
(542, 12, 'Athenry'), | |
(543, 12, 'Baile an Teampaill'), | |
(544, 12, 'Baile Chlair'), | |
(545, 12, 'Ballinasloe'), | |
(546, 12, 'Ballinderry'), | |
(547, 12, 'Ballygar'), | |
(548, 12, 'Carrownagur'), | |
(549, 12, 'Cill Ronain'), | |
(550, 12, 'Clarinbridge'), | |
(551, 12, 'Clifden'), | |
(552, 12, 'Cluain Bu'), | |
(553, 12, 'Conga'), | |
(554, 12, 'Corrofin'), | |
(555, 12, 'Craughwell'), | |
(556, 12, 'Cummer'), | |
(557, 12, 'Dunmore'), | |
(558, 12, 'Eanach Dhúin'), | |
(559, 12, 'Eyrecourt'), | |
(560, 12, 'Glenamaddy'), | |
(561, 12, 'Gort'), | |
(562, 12, 'Headford'), | |
(563, 12, 'Killererin'), | |
(564, 12, 'Killeroran'), | |
(565, 12, 'Killimor'), | |
(566, 12, 'Kinvara'), | |
(567, 12, 'Lackaghbeg'), | |
(568, 12, 'Loughrea'), | |
(569, 12, 'Maigh Cuilinn'), | |
(570, 12, 'Meelick'), | |
(571, 12, 'Monivea'), | |
(572, 12, 'Mount Bellew'), | |
(573, 12, 'Moylough'), | |
(574, 12, 'Na Forbacha'), | |
(575, 12, 'Oranmore'), | |
(576, 12, 'Oughterard'), | |
(577, 12, 'Portumna'), | |
(578, 12, 'Rosscahill'), | |
(579, 12, 'Roundstone'), | |
(580, 12, 'Tuam'), | |
(581, 12, 'Tulaigh Mhic Aodháin'), | |
(582, 12, 'Woodford'), | |
(583, 12, 'Wormhole'), | |
(584, 13, 'An tImleach'), | |
(585, 13, 'Ballinvoher'), | |
(586, 13, 'Ballydavid'), | |
(587, 13, 'Ballynacourty'), | |
(588, 13, 'Ballynahaglish'), | |
(589, 13, 'Ballyseedy'), | |
(590, 13, 'Beaufort'), | |
(591, 13, 'Blennerville'), | |
(592, 13, 'Carrig'), | |
(593, 13, 'Clogherbrien'), | |
(594, 13, 'Coom'), | |
(595, 13, 'Cromane'), | |
(596, 13, 'Doon'), | |
(597, 13, 'Dunloe'), | |
(598, 13, 'Glenbeigh'), | |
(599, 13, 'Gneevgullia'), | |
(600, 13, 'Kilgarvan'), | |
(601, 13, 'Killehenny'), | |
(602, 13, 'Killorglin'), | |
(603, 13, 'Knightstown'), | |
(604, 13, 'Lislaughtin'), | |
(605, 13, 'Lispole'), | |
(606, 13, 'Listowel'), | |
(607, 13, 'Lixnaw'), | |
(608, 13, 'Loch LuÃoch'), | |
(609, 13, 'Milltown'), | |
(610, 13, 'Muckross'), | |
(611, 13, 'Newtownsandes'), | |
(612, 13, 'Ratass'), | |
(613, 13, 'Rathmore'), | |
(614, 13, 'Sneem'), | |
(615, 13, 'Spa'), | |
(616, 13, 'Spunkane'), | |
(617, 13, 'Tarbert'), | |
(618, 14, 'Allenwood'), | |
(619, 14, 'Athy'), | |
(620, 14, 'Ballitore'), | |
(621, 14, 'Ballymore Eustace'), | |
(622, 14, 'Ballyoulster'), | |
(623, 14, 'Ballyroe'), | |
(624, 14, 'Ballysax East'), | |
(625, 14, 'Ballysax West'), | |
(626, 14, 'Ballyshannon'), | |
(627, 14, 'Ballytore'), | |
(628, 14, 'Balraheen'), | |
(629, 14, 'Bert'), | |
(630, 14, 'Blackwood'), | |
(631, 14, 'Bodenstown'), | |
(632, 14, 'Brownstown'), | |
(633, 14, 'Cadamstown'), | |
(634, 14, 'Calverstown'), | |
(635, 14, 'Carbury'), | |
(636, 14, 'Carnalway'), | |
(637, 14, 'Carragh'), | |
(638, 14, 'Castledermot'), | |
(639, 14, 'Celbridge'), | |
(640, 14, 'Clane'), | |
(641, 14, 'Cloncurry'), | |
(642, 14, 'Derrinturn'), | |
(643, 14, 'Donaghcumper'), | |
(644, 14, 'Downings'), | |
(645, 14, 'Feighcullen'), | |
(646, 14, 'Gilltown'), | |
(647, 14, 'Graney'), | |
(648, 14, 'Grangemellon'), | |
(649, 14, 'Grangemore'), | |
(650, 14, 'Johnstown'), | |
(651, 14, 'Johnstownbridge'), | |
(652, 14, 'Kilberry'), | |
(653, 14, 'Kilcock'), | |
(654, 14, 'Kilcullen'), | |
(655, 14, 'Kill'), | |
(656, 14, 'Killinthomas'), | |
(657, 14, 'Kilmead'), | |
(658, 14, 'Kilmeage South'), | |
(659, 14, 'Kilrush'), | |
(660, 14, 'Ladytown'), | |
(661, 14, 'Leixlip'), | |
(662, 14, 'Maddenstown'), | |
(663, 14, 'Maynooth'), | |
(664, 14, 'Milltown'), | |
(665, 14, 'Monasterevin'), | |
(666, 14, 'Morristownbiller'), | |
(667, 14, 'Naas'), | |
(668, 14, 'Narraghmore'), | |
(669, 14, 'Newbridge'), | |
(670, 14, 'Nurney'), | |
(671, 14, 'Prosperous'), | |
(672, 14, 'Rathangan'), | |
(673, 14, 'Robertstown'), | |
(674, 14, 'Sallins'), | |
(675, 14, 'Skerries'), | |
(676, 14, 'Straffan'), | |
(677, 14, 'Suncroft'), | |
(678, 14, 'Thomastown'), | |
(679, 14, 'Timahoe South'), | |
(680, 14, 'Windmill Cross'), | |
(681, 15, 'Ballyconra'), | |
(682, 15, 'Ballyragget'), | |
(683, 15, 'Bennettsbridge'), | |
(684, 15, 'Callan'), | |
(685, 15, 'Castlecomer'), | |
(686, 15, 'Clogh'), | |
(687, 15, 'Clogh-Chatsworth'), | |
(688, 15, 'Danesfort'), | |
(689, 15, 'Ennisnag'), | |
(690, 15, 'Farnoge'), | |
(691, 15, 'Fiddown'), | |
(692, 15, 'Freshford'), | |
(693, 15, 'Goresbridge'), | |
(694, 15, 'Gowran'), | |
(695, 15, 'Graiguenamanagh'), | |
(696, 15, 'Inistioge'), | |
(697, 15, 'Jerpoint Church'), | |
(698, 15, 'Johnstown'), | |
(699, 15, 'Kells'), | |
(700, 15, 'Killahy'), | |
(701, 15, 'Kilmacow'), | |
(702, 15, 'Kilmaganny'), | |
(703, 15, 'Lawcus'), | |
(704, 15, 'Moneenroe'), | |
(705, 15, 'Mooncoin'), | |
(706, 15, 'Mullinavat'), | |
(707, 15, 'New Ross'), | |
(708, 15, 'Outrath'), | |
(709, 15, 'Paulstown'), | |
(710, 15, 'Pilltown'), | |
(711, 15, 'Pollrone'), | |
(712, 15, 'Portnascully'), | |
(713, 15, 'Rathpatrick'), | |
(714, 15, 'Rosbercon Rural'), | |
(715, 15, 'Shankill'), | |
(716, 15, 'Slieverue'), | |
(717, 15, 'Stonyford'), | |
(718, 15, 'Thomastown'), | |
(719, 15, 'Ullid'), | |
(720, 15, 'Urlingford'), | |
(721, 16, 'Borris'), | |
(722, 16, 'Clondarrig'), | |
(723, 16, 'Dangans'), | |
(724, 16, 'Graigue'), | |
(725, 17, 'Ballinamore'), | |
(726, 17, 'Carrigallen'), | |
(727, 17, 'Dromahair'), | |
(728, 17, 'Drumkeeran'), | |
(729, 17, 'Drumod'), | |
(730, 17, 'Drumshanbo'), | |
(731, 17, 'Drumsna'), | |
(732, 17, 'Garadice'), | |
(733, 17, 'Gubacreeny'), | |
(734, 17, 'Kinlough'), | |
(735, 17, 'Leitrim'), | |
(736, 17, 'Manorhamilton'), | |
(737, 17, 'Mohill'), | |
(738, 17, 'Roosky'), | |
(739, 17, 'Tullaghan'), | |
(740, 18, 'Abbeyfeale'), | |
(741, 18, 'Abington'), | |
(742, 18, 'Adare'), | |
(743, 18, 'Annacotty'), | |
(744, 18, 'Ardagh'), | |
(745, 18, 'Askeaton'), | |
(746, 18, 'Athea'), | |
(747, 18, 'Ballingarry'), | |
(748, 18, 'Ballyagran'), | |
(749, 18, 'Ballybricken'), | |
(750, 18, 'Ballycummin'), | |
(751, 18, 'Ballyhahill'), | |
(752, 18, 'Ballylanders'), | |
(753, 18, 'Ballysimon'), | |
(754, 18, 'Ballysimon'), | |
(755, 18, 'Ballyvarra'), | |
(756, 18, 'Broadford'), | |
(757, 18, 'Bruff'), | |
(758, 18, 'Bruree'), | |
(759, 18, 'Caherconlish'), | |
(760, 18, 'Cappamore'), | |
(761, 18, 'Carrigkerry'), | |
(762, 18, 'Castleconnell'), | |
(763, 18, 'Clarina'), | |
(764, 18, 'Clonkeen'), | |
(765, 18, 'Coonagh'), | |
(766, 18, 'Croom'), | |
(767, 18, 'Doon South'), | |
(768, 18, 'Doon West'), | |
(769, 18, 'Drumcollogher'), | |
(770, 18, 'Fedamore'), | |
(771, 18, 'Foynes'), | |
(772, 18, 'Galbally'), | |
(773, 18, 'Glen'), | |
(774, 18, 'Glenagower'), | |
(775, 18, 'Glensharrold'), | |
(776, 18, 'Glenstal'), | |
(777, 18, 'Glin'), | |
(778, 18, 'Hospital'), | |
(779, 18, 'Kilfinane'), | |
(780, 18, 'Kilmallock'), | |
(781, 18, 'Kilteely'), | |
(782, 18, 'Knocklong'), | |
(783, 18, 'Loghill'), | |
(784, 18, 'Moroe'), | |
(785, 18, 'Mountcollins'), | |
(786, 18, 'Mountplummer'), | |
(787, 18, 'Mungret'), | |
(788, 18, 'Newcastle West'), | |
(789, 18, 'Oola'), | |
(790, 18, 'Pallas Grean'), | |
(791, 18, 'Pallaskenry'), | |
(792, 18, 'Patrickswell'), | |
(793, 18, 'Rathkeale'), | |
(794, 18, 'Rathronan'), | |
(795, 18, 'Roxborough'), | |
(796, 18, 'Shanagolden'), | |
(797, 18, 'Shanid'), | |
(798, 19, 'Ballinalee'), | |
(799, 19, 'Ballymahon'), | |
(800, 19, 'Breanrisk'), | |
(801, 19, 'Caldragh'), | |
(802, 19, 'Crosagstown'), | |
(803, 19, 'Drumlish'), | |
(804, 19, 'Edgeworthstown'), | |
(805, 19, 'Granard'), | |
(806, 19, 'Keenagh'), | |
(807, 19, 'Kilcommock'), | |
(808, 19, 'Lanesborough- Ballyleague'), | |
(809, 19, 'Newtownforbes'), | |
(810, 19, 'Rathcline'), | |
(811, 20, 'Ardee'), | |
(812, 20, 'Ballymascanlan'), | |
(813, 20, 'Baltray'), | |
(814, 20, 'Carlingford'), | |
(815, 20, 'Castlebellingham'), | |
(816, 20, 'Castlering'), | |
(817, 20, 'Castletown'), | |
(818, 20, 'Clogher'), | |
(819, 20, 'Clogherhead'), | |
(820, 20, 'Collon'), | |
(821, 20, 'Drogheda'), | |
(822, 20, 'Dromiskin'), | |
(823, 20, 'Drummullagh'), | |
(824, 20, 'Dunleer'), | |
(825, 20, 'Fair Gate'), | |
(826, 20, 'Haggardstown'), | |
(827, 20, 'Jenkinstown'), | |
(828, 20, 'Kilsaran'), | |
(829, 20, 'Knockbridge'), | |
(830, 20, 'Mansfieldstown'), | |
(831, 20, 'Monasterboice'), | |
(832, 20, 'Mullary'), | |
(833, 20, 'Omeath'), | |
(834, 20, 'St. Laurence Gate'), | |
(835, 20, 'St. Marys'), | |
(836, 20, 'St. Peters'), | |
(837, 20, 'Tallanstown'), | |
(838, 20, 'Termonfeckin'), | |
(839, 20, 'Tinure'), | |
(840, 20, 'Tullyallen'), | |
(841, 20, 'West Gate'), | |
(842, 21, 'Ardnaree'), | |
(843, 21, 'Balla'), | |
(844, 21, 'Ballina'), | |
(845, 21, 'Ballindine'), | |
(846, 21, 'Ballinrobe'), | |
(847, 21, 'Ballycastle'), | |
(848, 21, 'Ballyhaunis'), | |
(849, 21, 'Ballyhowly'), | |
(850, 21, 'Bangor'), | |
(851, 21, 'Bangor Erris'), | |
(852, 21, 'Beal an Mhuirthead'), | |
(853, 21, 'Bellavary'), | |
(854, 21, 'Breaghwy'), | |
(855, 21, 'Bunnyconnelan West'), | |
(856, 21, 'Charlestown-Bellahy'), | |
(857, 21, 'Claremorris'), | |
(858, 21, 'Cong'), | |
(859, 21, 'Crossboyne'), | |
(860, 21, 'Crossmolina'), | |
(861, 21, 'Dalgan'), | |
(862, 21, 'Derryloughan'), | |
(863, 21, 'Dumha Eige'), | |
(864, 21, 'Foxford'), | |
(865, 21, 'Gob an Choire'), | |
(866, 21, 'Keel-Dooagh'), | |
(867, 21, 'Kilbeagh'), | |
(868, 21, 'Kilbeagh'), | |
(869, 21, 'Kilgarvan'), | |
(870, 21, 'Kilkelly'), | |
(871, 21, 'Killala'), | |
(872, 21, 'Kilmaine'), | |
(873, 21, 'Kilmeena'), | |
(874, 21, 'Kiltimagh'), | |
(875, 21, 'Knock'), | |
(876, 21, 'Louisburgh'), | |
(877, 21, 'Newport'), | |
(878, 21, 'Newport East'), | |
(879, 21, 'Shrule'), | |
(880, 21, 'Slievemore'), | |
(881, 21, 'Sonnagh'), | |
(882, 21, 'Sraheen'), | |
(883, 21, 'Swinford'), | |
(884, 21, 'Toomore'), | |
(885, 21, 'Urlaur'), | |
(886, 21, 'Westport'), | |
(887, 22, 'Ardbraccan'), | |
(888, 22, 'Ardcath'), | |
(889, 22, 'Ardnamullan'), | |
(890, 22, 'Ashbourne'), | |
(891, 22, 'Athboy'), | |
(892, 22, 'Balbradagh'), | |
(893, 22, 'Ballivor'), | |
(894, 22, 'Balreask'), | |
(895, 22, 'Bective'), | |
(896, 22, 'Carlanstown'), | |
(897, 22, 'Castlerickard'), | |
(898, 22, 'Clonard'), | |
(899, 22, 'Clonee Village'), | |
(900, 22, 'Culmullin'), | |
(901, 22, 'Donaghmore'), | |
(902, 22, 'Donore'), | |
(903, 22, 'Drumconrath'), | |
(904, 22, 'Duleek'), | |
(905, 22, 'Dunboyne'), | |
(906, 22, 'Dunboyne'), | |
(907, 22, 'Dunshaughlin'), | |
(908, 22, 'Enfield'), | |
(909, 22, 'Gormanston'), | |
(910, 22, 'Grennanstown'), | |
(911, 22, 'Julianstown'), | |
(912, 22, 'Kells'), | |
(913, 22, 'Kentstown'), | |
(914, 22, 'Kilbrew'), | |
(915, 22, 'Kilcloon'), | |
(916, 22, 'Kildalkey'), | |
(917, 22, 'Killaconnigan'), | |
(918, 22, 'Kilmainham'), | |
(919, 22, 'Kilmessan'), | |
(920, 22, 'Laytown-Bettystown-Mornington'), | |
(921, 22, 'Longwood'), | |
(922, 22, 'Newtown'), | |
(923, 22, 'Nobber'), | |
(924, 22, 'Oldcastle'), | |
(925, 22, 'Rathmolyon'), | |
(926, 22, 'Ratoath'), | |
(927, 22, 'Rodanstown'), | |
(928, 22, 'Slane'), | |
(929, 22, 'St. Marys'), | |
(930, 22, 'Stamullen'), | |
(931, 22, 'Stamullin'), | |
(932, 22, 'Summerhill'), | |
(933, 22, 'Trim'), | |
(934, 22, 'Whitecross'), | |
(935, 23, 'Ballybay'), | |
(936, 23, 'Ballymackney'), | |
(937, 23, 'Bellanode'), | |
(938, 23, 'Cabragh'), | |
(939, 23, 'Carrickmacross'), | |
(940, 23, 'Castleblayney'), | |
(941, 23, 'Clones'), | |
(942, 23, 'Dawsongrove'), | |
(943, 23, 'Drumsnat'), | |
(944, 23, 'Emyvale'), | |
(945, 23, 'Glaslough'), | |
(946, 23, 'Inniskeen'), | |
(947, 23, 'Kilmore'), | |
(948, 23, 'Lisnaveane'), | |
(949, 23, 'Loughfea'), | |
(950, 23, 'Newbliss'), | |
(951, 23, 'Rockcorry'), | |
(952, 23, 'Scotstown'), | |
(953, 23, 'Smithborough'), | |
(954, 23, 'Tedavnet'), | |
(955, 24, 'Ballinagar'), | |
(956, 24, 'Ballyburly'), | |
(957, 24, 'Ballycumber'), | |
(958, 24, 'Banagher'), | |
(959, 24, 'Belmont'), | |
(960, 24, 'Birr'), | |
(961, 24, 'Bracknagh'), | |
(962, 24, 'Cappancur'), | |
(963, 24, 'Clara'), | |
(964, 24, 'Cloghan'), | |
(965, 24, 'Clonbullogue'), | |
(966, 24, 'Coolagary'), | |
(967, 24, 'Cullenwaine'), | |
(968, 24, 'Daingean'), | |
(969, 24, 'Edenderry'), | |
(970, 24, 'Ferbane'), | |
(971, 24, 'Ferbanel'), | |
(972, 24, 'Gallen'), | |
(973, 24, 'Geashill'), | |
(974, 24, 'Kilcormac'), | |
(975, 24, 'Killeigh'), | |
(976, 24, 'Kinnitty'), | |
(977, 24, 'Lumcloon'), | |
(978, 24, 'Monasteroris'), | |
(979, 24, 'Moneygall'), | |
(980, 24, 'Moyclare'), | |
(981, 24, 'Mucklagh'), | |
(982, 24, 'Pollagh'), | |
(983, 24, 'Portarlington'), | |
(984, 24, 'Raheenakeeran'), | |
(985, 24, 'Rathfeston'), | |
(986, 24, 'Rhode'), | |
(987, 24, 'Screggan'), | |
(988, 24, 'Shannonbridge'), | |
(989, 24, 'Shinrone'), | |
(990, 24, 'Srah'), | |
(991, 25, 'Athlone'), | |
(992, 25, 'Ballaghaderreen'), | |
(993, 25, 'Ballinasloe'), | |
(994, 25, 'Ballinlough'), | |
(995, 25, 'Ballyfarnan'), | |
(996, 25, 'Boyle'), | |
(997, 25, 'Carrick-on-Shannon'), | |
(998, 25, 'Castlerea'), | |
(999, 25, 'Clontuskert'), | |
(1000, 25, 'Cloonfad'), | |
(1001, 25, 'Cloontuskert'), | |
(1002, 25, 'Creagh'), | |
(1003, 25, 'Danesfort'), | |
(1004, 25, 'Elphin'), | |
(1005, 25, 'Frenchpark'), | |
(1006, 25, 'Keadew'), | |
(1007, 25, 'Kiltullagh'), | |
(1008, 25, 'Lanesborough- Ballyleague'), | |
(1009, 25, 'Loughglinn'), | |
(1010, 25, 'Roosky'), | |
(1011, 25, 'Strokestown'), | |
(1012, 26, 'Achonry West'), | |
(1013, 26, 'Ballincar'), | |
(1014, 26, 'Ballintogher'), | |
(1015, 26, 'Ballisodare'), | |
(1016, 26, 'Ballygawley'), | |
(1017, 26, 'Ballymote'), | |
(1018, 26, 'Ballysadare East'), | |
(1019, 26, 'Ballysadare East'), | |
(1020, 26, 'Calry'), | |
(1021, 26, 'Carney'), | |
(1022, 26, 'Castleconor West'), | |
(1023, 26, 'Charlestown-Bellahy'), | |
(1024, 26, 'Cliffoney'), | |
(1025, 26, 'Cliffony North'), | |
(1026, 26, 'Cliffony North'), | |
(1027, 26, 'Cliffony South'), | |
(1028, 26, 'Collooney'), | |
(1029, 26, 'Coolaney'), | |
(1030, 26, 'Cuilmore'), | |
(1031, 26, 'Drumcliff East'), | |
(1032, 26, 'Drumcliff West'), | |
(1033, 26, 'Easky'), | |
(1034, 26, 'Easky East'), | |
(1035, 26, 'Easky West'), | |
(1036, 26, 'Grange'), | |
(1037, 26, 'Gurteen'), | |
(1038, 26, 'Inniscrone'), | |
(1039, 26, 'Kilfree'), | |
(1040, 26, 'Kilglass'), | |
(1041, 26, 'Kilmacowen'), | |
(1042, 26, 'Knockaree'), | |
(1043, 26, 'Knockaree'), | |
(1044, 26, 'Lissadill East'), | |
(1045, 26, 'Lissadill North'), | |
(1046, 26, 'Mullaghmore'), | |
(1047, 26, 'Riverstown'), | |
(1048, 26, 'Rosses Point'), | |
(1049, 26, 'Strandhill'), | |
(1050, 26, 'Tubbercurry'), | |
(1051, 27, 'Abington'), | |
(1052, 27, 'Ardfinnan'), | |
(1053, 27, 'Ballina'), | |
(1054, 27, 'Ballingarry'), | |
(1055, 27, 'Ballyclerahan'), | |
(1056, 27, 'Ballyporeen'), | |
(1057, 27, 'Bansha'), | |
(1058, 27, 'Borrisokane'), | |
(1059, 27, 'Borrisoleigh'), | |
(1060, 27, 'Buolick'), | |
(1061, 27, 'Caher'), | |
(1062, 27, 'Cahir'), | |
(1063, 27, 'Cappagh'), | |
(1064, 27, 'Cappawhite'), | |
(1065, 27, 'Carrickbeg'), | |
(1066, 27, 'Carrick-on-Suir'), | |
(1067, 27, 'Cashel'), | |
(1068, 27, 'Castletown'), | |
(1069, 27, 'Clogheen'), | |
(1070, 27, 'Clonmel'), | |
(1071, 27, 'Cloughjordan'), | |
(1072, 27, 'Dromineer'), | |
(1073, 27, 'Dundrum'), | |
(1074, 27, 'Emly'), | |
(1075, 27, 'Fethard'), | |
(1076, 27, 'Gaile'), | |
(1077, 27, 'Golden'), | |
(1078, 27, 'Gortnahoo'), | |
(1079, 27, 'Holycross'), | |
(1080, 27, 'Inishlounaght'), | |
(1081, 27, 'Kilcomenty'), | |
(1082, 27, 'Kilcommon'), | |
(1083, 27, 'Killenaule'), | |
(1084, 27, 'Kilmore'), | |
(1085, 27, 'Kilpatrick'), | |
(1086, 27, 'Kilsheelan'), | |
(1087, 27, 'Knigh'), | |
(1088, 27, 'Latteragh'), | |
(1089, 27, 'Lisronagh'), | |
(1090, 27, 'Littleton'), | |
(1091, 27, 'Monsea'), | |
(1092, 27, 'Mortlestown'), | |
(1093, 27, 'Mullinahone'), | |
(1094, 27, 'Newcastle'), | |
(1095, 27, 'Newport'), | |
(1096, 27, 'Newtown'), | |
(1097, 27, 'Peppardstown'), | |
(1098, 27, 'Portroe'), | |
(1099, 27, 'Puckaun'), | |
(1100, 27, 'Rahelty'), | |
(1101, 27, 'Reardnogy'), | |
(1102, 27, 'Riverstown'), | |
(1103, 27, 'Roscrea'), | |
(1104, 27, 'Rosegreen'), | |
(1105, 27, 'Silvermines'), | |
(1106, 27, 'Templemore'), | |
(1107, 27, 'Templetuohy'), | |
(1108, 27, 'Thurles'), | |
(1109, 27, 'Tipperary'), | |
(1110, 27, 'Toomevara'), | |
(1111, 27, 'Tullaghmelan'), | |
(1112, 27, 'Tullamain'), | |
(1113, 27, 'Twomileborris'), | |
(1114, 27, 'Youghalarra'), | |
(1115, 29, 'Aglish'), | |
(1116, 29, 'An Rinn'), | |
(1117, 29, 'Annestown'), | |
(1118, 29, 'Ardmore'), | |
(1119, 29, 'Ballinroad'), | |
(1120, 29, 'Ballyheeny'), | |
(1121, 29, 'Cappoquin'), | |
(1122, 29, 'Carrickbeg'), | |
(1123, 29, 'Carrick-on-Suir'), | |
(1124, 29, 'Cheekpoint'), | |
(1125, 29, 'Clashmore'), | |
(1126, 29, 'Clonea'), | |
(1127, 29, 'Comeragh'), | |
(1128, 29, 'Dromana'), | |
(1129, 29, 'Dungarvan'), | |
(1130, 29, 'Dunhill'), | |
(1131, 29, 'Dunmore East'), | |
(1132, 29, 'Faithlegg'), | |
(1133, 29, 'Faithlegg'), | |
(1134, 29, 'Gardenmorris'), | |
(1135, 29, 'Islandikane'), | |
(1136, 29, 'Keereen'), | |
(1137, 29, 'Kilbarrymeaden'), | |
(1138, 29, 'Kill'), | |
(1139, 29, 'Killea'), | |
(1140, 29, 'Kilmacomma'), | |
(1141, 29, 'Kilmacthomas'), | |
(1142, 29, 'Kilmeadan'), | |
(1143, 29, 'Lemybrien'), | |
(1144, 29, 'Lismore'), | |
(1145, 29, 'Mountkennedy'), | |
(1146, 29, 'Passage East'), | |
(1147, 29, 'Portlaw'), | |
(1148, 29, 'Rathmoylan'), | |
(1149, 29, 'Stradbally'), | |
(1150, 29, 'Tallow'), | |
(1151, 29, 'Tramore'), | |
(1152, 29, 'Villierstown'), | |
(1153, 30, 'Athlone'), | |
(1154, 30, 'Ballykilmore'), | |
(1155, 30, 'Ballymore'), | |
(1156, 30, 'Ballynacargy'), | |
(1157, 30, 'Belvidere'), | |
(1158, 30, 'Castle'), | |
(1159, 30, 'Castlelost'), | |
(1160, 30, 'Castlepollard'), | |
(1161, 30, 'Clonfad'), | |
(1162, 30, 'Clonmellon'), | |
(1163, 30, 'Collinstown'), | |
(1164, 30, 'Coolure'), | |
(1165, 30, 'Delvin'), | |
(1166, 30, 'Glassan'), | |
(1167, 30, 'Hopestown'), | |
(1168, 30, 'Kilbeggan'), | |
(1169, 30, 'Kilbixy'), | |
(1170, 30, 'Killua'), | |
(1171, 30, 'Killucan-Rathwire'), | |
(1172, 30, 'Kinnegad'), | |
(1173, 30, 'Kinturk'), | |
(1174, 30, 'Moate'), | |
(1175, 30, 'Moydrum'), | |
(1176, 30, 'Multyfarnham'), | |
(1177, 30, 'Newtown'), | |
(1178, 30, 'Raharney'), | |
(1179, 30, 'Riverdale'), | |
(1180, 30, 'Rochfortbridge'), | |
(1181, 30, 'Rosmead'), | |
(1182, 30, 'Tyrrellspass'), | |
(1183, 31, 'Adamstown'), | |
(1184, 31, 'Ardamine'), | |
(1185, 31, 'Ardcavan'), | |
(1186, 31, 'Arthurstown'), | |
(1187, 31, 'Artramon'), | |
(1188, 31, 'Ballycanew'), | |
(1189, 31, 'Ballycullane'), | |
(1190, 31, 'Ballygeary'), | |
(1191, 31, 'Ballyhack'), | |
(1192, 31, 'Ballysimon'), | |
(1193, 31, 'Bannow'), | |
(1194, 31, 'Barntown'), | |
(1195, 31, 'Bolaboy'), | |
(1196, 31, 'Bridgetown'), | |
(1197, 31, 'Bridgetown'), | |
(1198, 31, 'Bunclody-Carrickduff'), | |
(1199, 31, 'Camolin'), | |
(1200, 31, 'Campile'), | |
(1201, 31, 'Carrick'), | |
(1202, 31, 'Castle Ellis'), | |
(1203, 31, 'Castle Talbot'), | |
(1204, 31, 'Castlebridge'), | |
(1205, 31, 'Clonegal'), | |
(1206, 31, 'Clongeen'), | |
(1207, 31, 'Clonroche'), | |
(1208, 31, 'Coolgreany'), | |
(1209, 31, 'Courtown'), | |
(1210, 31, 'Courtown Harbour'), | |
(1211, 31, 'Danescastle'), | |
(1212, 31, 'Drinagh'), | |
(1213, 31, 'Duncannon'), | |
(1214, 31, 'Edermine'), | |
(1215, 31, 'Enniscorthy'), | |
(1216, 31, 'Ferns'), | |
(1217, 31, 'Fethard-on-Sea'), | |
(1218, 31, 'Ford'), | |
(1219, 31, 'Gorey'), | |
(1220, 31, 'Grahormac'), | |
(1221, 31, 'Kilcomb'), | |
(1222, 31, 'Killincooly'), | |
(1223, 31, 'Killinick'), | |
(1224, 31, 'Kilmokea'), | |
(1225, 31, 'Kilmore'), | |
(1226, 31, 'Kilmore Quay'), | |
(1227, 31, 'Kilrane'), | |
(1228, 31, 'Kilscoran'), | |
(1229, 31, 'Marshalstown'), | |
(1230, 31, 'Moyacomb'), | |
(1231, 31, 'Murntown'), | |
(1232, 31, 'New Ross'), | |
(1233, 31, 'Newbawn'), | |
(1234, 31, 'Newtownbarry'), | |
(1235, 31, 'Oilgate'), | |
(1236, 31, 'Oulart'), | |
(1237, 31, 'Piercetown'), | |
(1238, 31, 'Rathaspick'), | |
(1239, 31, 'Rosslare'), | |
(1240, 31, 'St. Helens'), | |
(1241, 31, 'Taghmon'), | |
(1242, 31, 'Tinnacross'), | |
(1243, 31, 'Tintern'), | |
(1244, 32, 'Arklow'), | |
(1245, 32, 'Ashford'), | |
(1246, 32, 'Aughrim'), | |
(1247, 32, 'Avoca'), | |
(1248, 32, 'Ballyarthur'), | |
(1249, 32, 'Baltinglass'), | |
(1250, 32, 'Blessington'), | |
(1251, 32, 'Brockagh'), | |
(1252, 32, 'Burgage'), | |
(1253, 32, 'Carnew'), | |
(1254, 32, 'Cronebane'), | |
(1255, 32, 'Delgany'), | |
(1256, 32, 'Donard'), | |
(1257, 32, 'Dunlavin'), | |
(1258, 32, 'Enniskerry'), | |
(1259, 32, 'Glenealy'), | |
(1260, 32, 'Greystones'), | |
(1261, 32, 'Kilbride'), | |
(1262, 32, 'Kilcoole'), | |
(1263, 32, 'Killiskey'), | |
(1264, 32, 'Kilmacanoge'), | |
(1265, 32, 'Kilmacanogue'), | |
(1266, 32, 'Kilpedder'), | |
(1267, 32, 'Laragh'), | |
(1268, 32, 'Newcastle'), | |
(1269, 32, 'Newcastle Lower'), | |
(1270, 32, 'Newcastle Upper'), | |
(1271, 32, 'Newtownmountkennedy'), | |
(1272, 32, 'Oldtown'), | |
(1273, 32, 'Rathdrum'), | |
(1274, 32, 'Rathdrum'), | |
(1275, 32, 'Rathmichael'), | |
(1276, 32, 'Rathnew'), | |
(1277, 32, 'Redcross'), | |
(1278, 32, 'Roundwood'), | |
(1279, 32, 'Shillelagh'), | |
(1280, 32, 'Stratford'), | |
(1281, 32, 'Tinahely'), | |
(1282, 32, 'Togher'), | |
(1283, 32, 'Wicklow'), | |
(1284, 10, 'Dublin1'), | |
(1286, 10, 'Dublin2'), | |
(1287, 10, 'Dublin3'), | |
(1288, 10, 'Dublin4'), | |
(1289, 10, 'Dublin5'), | |
(1290, 10, 'Dublin6'), | |
(1291, 10, 'Dublin7'), | |
(1292, 10, 'Dublin8'), | |
(1293, 10, 'Dublin9'), | |
(1294, 10, 'Dublin10'), | |
(1295, 10, 'Dublin11'), | |
(1296, 10, 'Dublin12'), | |
(1297, 10, 'Dublin13'), | |
(1298, 10, 'Dublin14'), | |
(1299, 10, 'Dublin15'), | |
(1300, 10, 'Dublin16'), | |
(1301, 10, 'Dublin17'), | |
(1302, 10, 'Dublin18'), | |
(1303, 8, 'Gweedore'), | |
(1305, 12, 'Salthill'), | |
(1306, 5, 'Doolin'), | |
(1307, 9, 'Newcastle'), | |
(1308, 1, 'Ballygally'), | |
(1309, 27, 'Limerick Junction'), | |
(1310, 8, 'Inishowen'), | |
(1311, 12, 'Connemara'), | |
(1312, 9, 'Bangor'), | |
(1313, 28, 'Dungannon'), | |
(1314, 9, 'Banbridge'), | |
(1316, 10, 'Dublin 19'), | |
(1317, 10, 'Dublin 20'), | |
(1318, 10, 'Dublin 21'), | |
(1319, 10, 'Dublin 22'), | |
(1320, 31, 'Blackwater'), | |
(1321, 21, 'Belmullet'), | |
(1322, 5, 'Bunratty'), | |
(1323, 1, 'Bushmills'), | |
(1324, 7, 'Coleraine'), | |
(1325, 10, 'Cloghran'), | |
(1326, 12, 'Carraroe'), | |
(1327, 8, 'Carrigart'), | |
(1328, 12, 'Claregalway'), | |
(1329, 28, 'Clogher'), | |
(1330, 4, 'Mountnugent'), | |
(1331, 10, 'Santry'), | |
(1332, 15, 'Springhill'), | |
(1338, 7, 'Portstewart'), | |
(1337, 8, 'kerrykeel'), | |
(1333, 8, 'Derrybeg'), | |
(1334, 1, 'Carrickfergus'), | |
(1335, 13, 'The Kerries'), | |
(1336, 6, 'Charleville'), | |
(1339, 12, 'Inishbofin Island'), | |
(1340, 8, 'Downings'), | |
(1341, 1, 'Dunadry'), | |
(1342, 6, 'Glengarriff'), | |
(1343, 28, 'Cookstown'), | |
(1344, 1, 'Galgorm'), | |
(1345, 28, 'Strabane'), | |
(1346, 1, 'Larne'), | |
(1347, 11, 'Beleek'), | |
(1348, 9, 'Kilkeel'), | |
(1349, 13, 'Glencar'), | |
(1350, 9, 'Crawfordsburn'), | |
(1351, 8, 'Dungloe'), | |
(1352, 21, 'Achill Island'), | |
(1353, 12, 'Spiddal'), | |
(1354, 10, 'Tyrellstown'), | |
(1355, 1, 'Portrush'), | |
(1356, 1, 'Ballymena'), | |
(1357, 2, 'Portadown'), | |
(1358, 9, 'Newtownards'), | |
(1359, 1, 'Ballyclare'), | |
(1360, 9, 'Ardglass'), | |
(1361, 7, 'Castlerock'), | |
(1362, 1, 'Lisburn'), | |
(1363, 10, 'Dollymount'), | |
(1364, 6, 'Beara'), | |
(1365, 32, 'Glendalough'), | |
(1366, 16, 'Killenard'), | |
(1367, 6, 'Glarmire'), | |
(1368, 12, 'Newcastle'), | |
(1369, 20, 'Termonfeckin'), | |
(1370, 9, 'Holywood'), | |
(1371, 14, 'The Curragh'), | |
(1372, 16, 'Rathdowney'), | |
(1373, 15, 'Ballyhale'), | |
(1374, 22, 'Bettystown'), | |
(1375, 22, 'Kilcock'), | |
(1376, 1, 'Whitehead'), | |
(1377, 1, 'Ballycastle'), | |
(1378, 9, 'Saintfield'), | |
(1379, 32, 'Brittas Bay'), | |
(1380, 10, 'Dublin 24'), | |
(1381, 10, 'Kilternan'), | |
(1382, 18, 'Castletroy'), | |
(1383, 7, 'Limavaddy'), | |
(1384, 2, 'Craigavon'), | |
(1385, 10, 'Carrickmines'), | |
(1386, 13, 'Portmagee'), | |
(1387, 13, 'Valencia'), | |
(1388, 5, 'Inch'), | |
(1389, 5, 'Spanish Point'), | |
(1390, 13, 'Inch'); | |
-- -------------------------------------------------------- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment